Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Schmoho committed Oct 14, 2024
1 parent f31760a commit 9279b1d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM openjdk:21-slim
# Set the maintainer email for the image
LABEL maintainer="[email protected]"

COPY target/model-polisher-server-1.0.0-SNAPSHOT-standalone.jar /
COPY target/model-polisher-server-2.1.0-standalone.jar /

EXPOSE 3000

ENTRYPOINT ["java", "-jar", "/model-polisher-server-1.0.0-SNAPSHOT-standalone.jar"]
ENTRYPOINT ["java", "-jar", "/model-polisher-server-2.1.0-standalone.jar"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The corresponding Python client library stub can be found [here](https://github.
See the [Releases Page](https://github.com/draeger-lab/MPServer/releases) for a download of the standalone JAR.
You can run it with
``` bash
java -jar model-polisher-server-0.9.0-standalone.jar --config-file path/to/server-config.edn
java -jar model-polisher-server-2.1.0-standalone.jar --config-file path/to/server-config.edn
```
The [`server-config.edn`](resources/server-config.edn) determines server behaviour and where to find systems the server depends on.

Expand Down
2 changes: 1 addition & 1 deletion development/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ lein uberjar >/dev/null 2>&1
cd /opt

echo "Starting Server"
exec java -jar MPServer/target/model-polisher-server-0.9.0-standalone.jar "$@"
exec java -jar MPServer/target/model-polisher-server-2.1.0-standalone.jar "$@"


2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject model-polisher-server "0.9.0"
(defproject model-polisher-server "2.1.0"
:main de.uni-halle.informatik.biodata.mpserver.core
:profiles {:uberjar {:aot :all}}
:plugins [[refactor-nrepl "3.10.0"]
Expand Down
3 changes: 1 addition & 2 deletions resources/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
},
"servers": [
{
"url": "https://biodata.informatik.uni-halle.de/modelling/api/development/",
"description": "Development"
"url": "https://biodata.informatik.uni-halle.de/modelling/api/v2.1/"
}
],
"paths": {
Expand Down

0 comments on commit 9279b1d

Please sign in to comment.