Skip to content

Commit

Permalink
Create a new release, based on VDMS feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
ivannov committed Nov 1, 2018
1 parent cccbc50 commit c8de892
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ In the following step by step guide we will show you how you can use the various

== Let's start

Download the https://github.com/bgjug/microprofile-hol-1x/releases/download/1.3.0/microprofile-hol.zip[lab archive] and extract it.
Download the https://github.com/bgjug/microprofile-hol-1x/releases/download/1.3.1/microprofile-hol.zip[lab archive] and extract it.
You will notice inside a PDF and a directory with a maven multi-module project.

The PDF is the lab handout.
Expand Down
16 changes: 16 additions & 0 deletions bumpVersion.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

newVersion=$1

mvn versions:set -DnewVersion=${newVersion}
cd solution/authors
mvn versions:set -DnewVersion=${newVersion}
cd ../content
mvn versions:set -DnewVersion=${newVersion}
cd ../gui
mvn versions:set -DnewVersion=${newVersion}
cd ../subscribers
mvn versions:set -DnewVersion=${newVersion}
cd ../users
mvn versions:set -DnewVersion=${newVersion}

2 changes: 1 addition & 1 deletion docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>bg.jug</groupId>
<artifactId>microprofile-hol</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
</parent>

<artifactId>docs</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>bg.jug</groupId>
<artifactId>microprofile-hol</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<packaging>pom</packaging>

<name>MicroProfile Hands-on lab</name>
Expand Down
2 changes: 1 addition & 1 deletion solution/authors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>bg.jug</groupId>
<artifactId>authors</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<properties>
<version.hammock>2.0</version.hammock>
<maven.compiler.source>1.8</maven.compiler.source>
Expand Down
2 changes: 1 addition & 1 deletion solution/content/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<artifactId>content</artifactId>
<groupId>bg.jug</groupId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<packaging>war</packaging>
<properties>
<version.ws-liberty>18.0.0.3</version.ws-liberty>
Expand Down
2 changes: 1 addition & 1 deletion solution/gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>gui</artifactId>
<groupId>bg.jug</groupId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<packaging>war</packaging>
<name>GUI Microservice (TomEE)</name>

Expand Down
2 changes: 1 addition & 1 deletion solution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>bg.jug</groupId>
<artifactId>microprofile-hol</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
</parent>

<artifactId>solution</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion solution/subscribers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>bg.jug</groupId>
<artifactId>subscribers</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<description>The Subscribers microservice resource</description>
<packaging>war</packaging>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion solution/users/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>bg.jug</groupId>
<artifactId>users</artifactId>
<packaging>war</packaging>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down

0 comments on commit c8de892

Please sign in to comment.