Skip to content

Commit

Permalink
Application version set to 1.0.4
Browse files Browse the repository at this point in the history
readme.md updated accordingly
  • Loading branch information
igor.vlahek committed Mar 22, 2020
1 parent 0a1ace7 commit 5084eb0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<groupId>hr.ivlahek.sample</groupId>
<artifactId>store</artifactId>
<packaging>pom</packaging>
<version>1.0.1</version>
<version>1.0.4</version>

<modules>
<module>store-service</module>
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Run the following script to build and run the service:
- will run the application on a port 8080

## Running the service manually (Postgres Database necessary)
If you don't have maven and docker installed locally on your computer you can download the application (store-service-1.0.1.jar) from:
If you don't have maven and docker installed locally on your computer you can download the application (store-service-1.0.4.jar) from:
`https://github.com/ivlahek/store-service/packages/158317`

You will need a postgres database listening on a port 15432.
Expand All @@ -18,7 +18,7 @@ One can be run in docker `docker run -d -p 15432:5432 postgres:9.6.9-alpine`
The application by default:
- is listening on a port 8080
- needs postgres database listening on a port 15432
- can be run `java -jar store-service-1.0.1.jar`
- can be run `java -jar store-service-1.0.4.jar`

## API - documentation
- API documentation is available on http://localhost:8080/swagger-ui.html
Expand Down
2 changes: 1 addition & 1 deletion run-script.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
call docker run -d -p 15432:5432 postgres:9.6.9-alpine
call mvn clean install -DskipTests
java -jar %cd%/store-service/target/store-service-1.0.1.jar
java -jar %cd%/store-service/target/store-service-1.0.4.jar
2 changes: 1 addition & 1 deletion run-script.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker run -d -p 15432:5432 postgres:9.6.9-alpine
mvn clean install -DskipTests
java -jar store-service/target/store-service-1.0.1.jar
java -jar store-service/target/store-service-1.0.4.jar
2 changes: 1 addition & 1 deletion store-dto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>store</artifactId>
<groupId>hr.ivlahek.sample</groupId>
<version>1.0.1</version>
<version>1.0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion store-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>store</artifactId>
<groupId>hr.ivlahek.sample</groupId>
<version>1.0.1</version>
<version>1.0.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 5084eb0

Please sign in to comment.