diff --git a/README.md b/README.md index 6dc2f0b..a2a103a 100644 --- a/README.md +++ b/README.md @@ -40,13 +40,13 @@ server.stop(); ### Stand-alone server -Download the jar TODO and execute it +Download the [jar](https://repo1.maven.org/maven2/io/github/gilbertojrequena/bonsai-sns/0.1.1/bonsai-sns-0.1.1.jar) and execute it -`java -jar bonsai-sns-1.0.0.jar port=9494 region=region accountId=987654321 sqsEndpoint=http://localhost:9432 sqsAccessKey=foo sqsSecretKey=bar` +`java -jar bonsai-sns-0.1.1.jar port=9494 region=region accountId=987654321 sqsEndpoint=http://localhost:9432 sqsAccessKey=foo sqsSecretKey=bar` or -`java -Dconfig.file=bonsai-sns.conf -jar bonsai-sns-1.0.0.jar` +`java -Dconfig.file=bonsai-sns.conf -jar bonsai-sns-0.1.1.jar` ### Environment configuration bonsai-sns uses [Typesafe Config](https://github.com/lightbend/config) for loading its configuration, topics and subscriptions can be created on startup by providing an `application.conf` @@ -192,9 +192,15 @@ server.stop(); *TODO* -## Artifact in maven +## Bonsai-sns in maven -*TODO* +``` + + io.github.gilbertojrequena + bonsai-sns + 0.1.1 + +``` ## Running tests diff --git a/build.gradle b/build.gradle index 39aceb4..90f726b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'io.github.gilbertojrequena' -version '0.1.0' +version '0.1.1' sourceCompatibility = 1.8 diff --git a/src/main/resources/bonsai-sns.conf b/example.conf similarity index 100% rename from src/main/resources/bonsai-sns.conf rename to example.conf