Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbertojrequena committed Jan 12, 2020
1 parent 96bf811 commit 4940951
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -192,9 +192,15 @@ server.stop();

*TODO*

## Artifact in maven
## Bonsai-sns in maven

*TODO*
```
<dependency>
<groupId>io.github.gilbertojrequena</groupId>
<artifactId>bonsai-sns</artifactId>
<version>0.1.1</version>
</dependency>
```

## Running tests

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'io.github.gilbertojrequena'
version '0.1.0'
version '0.1.1'

sourceCompatibility = 1.8

Expand Down
File renamed without changes.

0 comments on commit 4940951

Please sign in to comment.