Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
trobert committed Aug 11, 2023
1 parent 77f9069 commit 8a79177
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions bin/run-gateway.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ if [ -z "$CONFIGURATION_FILE_PATH" ]; then
export CONFIGURATION_FILE_PATH=gateway-core/config/application.yaml
fi

export CLASSPATH=${CLASSPATH}:gateway-core/target/gateway-core-0.5.0-SNAPSHOT.jar
export CLASSPATH=${CLASSPATH}:gateway-core/target/gateway-core-0.6.0-SNAPSHOT.jar

# Run command:
java io.conduktor.gateway.Bootstrap

# Error handling:
retVal=$?
if [ $retVal -ne 0 ] && [ $retVal -ne 130 ] ; then
echo "Gateway failed to start. Ensure your CLASSPATH includes gateway-core-0.5.0-SNAPSHOT.jar and any interceptors defined under the pluginClass in your application.yaml" ${CLASSPATH}
echo "Gateway failed to start. Ensure your CLASSPATH includes gateway-core-0.6.0-SNAPSHOT.jar and any interceptors defined under the pluginClass in your application.yaml" ${CLASSPATH}
fi
exit $retVal
2 changes: 1 addition & 1 deletion gateway-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.conduktor</groupId>
<artifactId>conduktor-gateway-oss</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions gateway-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.conduktor</groupId>
<artifactId>conduktor-gateway-oss</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>io.conduktor</groupId>
<artifactId>gateway-core</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>
</dependency>


Expand Down
2 changes: 1 addition & 1 deletion interceptor-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>conduktor-gateway-oss</artifactId>
<groupId>io.conduktor</groupId>
<version>0.5.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions logger-interceptor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>io.conduktor</groupId>
<artifactId>logger-interceptor</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>

<packaging>jar</packaging>

Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>io.conduktor</groupId>
<artifactId>interceptor-framework</artifactId>
<version>0.5.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.conduktor</groupId>
<artifactId>conduktor-gateway-oss</artifactId>
<packaging>pom</packaging>
<version>0.5.0-SNAPSHOT</version>
<version>0.6.0-SNAPSHOT</version>
<modules>
<module>gateway-core</module>
<module>gateway-test</module>
Expand Down

0 comments on commit 8a79177

Please sign in to comment.