Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
REL: promote to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucboruta committed Nov 27, 2017
1 parent e15ce02 commit 9bc5fae
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 6 deletions.
20 changes: 18 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Created by https://www.gitignore.io/api/java,eclipse
.DS_Store

# Created by https://www.gitignore.io/api/java,eclipse,maven

### Eclipse ###

Expand Down Expand Up @@ -83,4 +85,18 @@ local.properties
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# End of https://www.gitignore.io/api/java,eclipse
### Maven ###
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties

# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
!/.mvn/wrapper/maven-wrapper.jar

# End of https://www.gitignore.io/api/java,eclipse,maven
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,28 @@
# sandow
🗂 Sandow bridges the Java Collections Framework and Elasticsearch indices
# ⛓ sandow

`sandow` bridges the Java Collections Framework and Elasticsearch indices.

## Latest release

[![Release](https://jitpack.io/v/thunken/sandow.svg?style=flat-square)](https://github.com/thunken/sandow/releases)

To add a dependency on this project using Gradle, Maven, sbt, or Leiningen, we recommend using [JitPack](https://jitpack.io/#thunken/sandow/v1.0.0). The Maven group ID is `com.github.thunken`, and the artifact ID is `sandow`.

For example, for Maven, first add the JitPack repository to your build file:
```xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
```

And then add the dependency:
```xml
<dependency>
<groupId>com.github.thunken</groupId>
<artifactId>sandow</artifactId>
<version>v1.0.0</version>
</dependency>
```
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.thunken</groupId>
<artifactId>sandow</artifactId>
<version>0.1</version>
<version>1.0.0</version>
<properties>
<java.version>1.8</java.version>
<java.source>${java.version}</java.source>
Expand All @@ -19,12 +19,20 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<version>3.7.0</version>
<configuration>
<source>${java.source}</source>
<target>${java.target}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<reportOutputDirectory>${project.basedir}</reportOutputDirectory>
<destDir>docs</destDir>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down

0 comments on commit 9bc5fae

Please sign in to comment.