Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorRodchenkov committed Mar 19, 2024
1 parent 326b0d4 commit baecacc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM eclipse-temurin:latest
VOLUME /tmp
ENV SIFGRAPH_DATA="classpath:bmp.gz"
COPY build/libs/sifgraph-server-1.0.jar app.jar
COPY build/libs/sifgraph-server-1.1.jar app.jar
ENTRYPOINT ["java","-Xmx16g","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
EXPOSE 8080
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'

//java 9+ does not have Jax B Dependents
implementation 'javax.xml.bind:jaxb-api:2.3.0'
implementation 'com.sun.xml.bind:jaxb-core:2.3.0'
implementation 'com.sun.xml.bind:jaxb-impl:2.3.0'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'com.sun.xml.bind:jaxb-core:2.3.0.1'
implementation 'com.sun.xml.bind:jaxb-impl:2.3.6'
implementation 'javax.activation:activation:1.1.1'
}

Expand All @@ -47,4 +47,4 @@ test {

sourceCompatibility = 17
group = 'pathwaycommons'
version = '1.0'
version = '1.1'

0 comments on commit baecacc

Please sign in to comment.