Skip to content

Commit

Permalink
CREATE VERSION 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pa-ssch committed Jan 17, 2021
1 parent 3e4c74c commit 169bd66
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ RUN mvn -B -e clean install -DskipTests=true

FROM openjdk:11-jre-slim
WORKDIR /app
COPY --from=builder /app/core/target/core-0.0.1-SNAPSHOT-jar-with-dependencies.jar .
COPY --from=builder /app/core/target/core-1.0-jar-with-dependencies.jar .

ENTRYPOINT [ "java", "-jar", "/app/core-0.0.1-SNAPSHOT-jar-with-dependencies.jar"]
ENTRYPOINT [ "java", "-jar", "/app/core-1.0-jar-with-dependencies.jar"]
CMD ["live", "-l=/"]

4 changes: 2 additions & 2 deletions .docker/DockerfileOneThread
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN mvn -B -e clean install -DskipTests=true

FROM openjdk:11-jre-slim
WORKDIR /app
COPY --from=builder /app/core/target/core-0.0.1-SNAPSHOT-jar-with-dependencies.jar .
COPY --from=builder /app/core/target/core-1.0-jar-with-dependencies.jar .

ENTRYPOINT [ "java", "-jar", "/app/core-0.0.1-SNAPSHOT-jar-with-dependencies.jar"]
ENTRYPOINT [ "java", "-jar", "/app/core-1.0-jar-with-dependencies.jar"]
CMD ["live", "-l=/", "-m=1"]
2 changes: 1 addition & 1 deletion spe-ed-solver/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.lehnurr.spe-ed-solver</groupId>
<artifactId>spe-ed-solver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>
</parent>

<artifactId>core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spe-ed-solver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.lehnurr.spe-ed-solver</groupId>
<artifactId>spe-ed-solver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>

<packaging>pom</packaging>
<modules>
Expand Down
2 changes: 1 addition & 1 deletion spe-ed-solver/simulation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>de.lehnurr.spe-ed-solver</groupId>
<artifactId>spe-ed-solver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>simulation</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion spe-ed-solver/solver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>de.lehnurr.spe-ed-solver</groupId>
<artifactId>spe-ed-solver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>solver</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion spe-ed-solver/utility/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.lehnurr.spe-ed-solver</groupId>
<artifactId>spe-ed-solver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>utility</artifactId>
</project>
2 changes: 1 addition & 1 deletion spe-ed-solver/visualisation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.lehnurr.spe-ed-solver</groupId>
<artifactId>spe-ed-solver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>visualisation</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion spe-ed-solver/web-communication/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.lehnurr.spe-ed-solver</groupId>
<artifactId>spe-ed-solver</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>
</parent>
<artifactId>web-communication</artifactId>

Expand Down

0 comments on commit 169bd66

Please sign in to comment.