Skip to content

Commit

Permalink
updated version to 0.2.0 (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
bashir2 committed Apr 27, 2023
1 parent f24da0b commit fd3be78
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN mvn --batch-mode package -Pstandalone-app -Dlicense.skip=true
# Image for FHIR Access Proxy binary with configuration knobs as environment vars.
FROM eclipse-temurin:11-jdk-focal as main

COPY --from=build /app/exec/target/exec-0.1.1.jar /
COPY --from=build /app/exec/target/exec-0.2.0.jar /
COPY resources/hapi_page_url_allowed_queries.json resources/hapi_page_url_allowed_queries.json

ENV PROXY_PORT=8080
Expand All @@ -54,4 +54,4 @@ ENV BACKEND_TYPE="HAPI"
ENV ACCESS_CHECKER="list"
ENV RUN_MODE="PROD"

ENTRYPOINT java -jar exec-0.1.1.jar --server.port=${PROXY_PORT}
ENTRYPOINT java -jar exec-0.2.0.jar --server.port=${PROXY_PORT}
2 changes: 1 addition & 1 deletion exec/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.google.fhir.gateway</groupId>
<artifactId>fhir-gateway</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>
</parent>

<artifactId>exec</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
implementations do not have to do this; they can redeclare those deps. -->
<groupId>com.google.fhir.gateway</groupId>
<artifactId>fhir-gateway</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>
</parent>

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

<groupId>com.google.fhir.gateway</groupId>
<artifactId>fhir-gateway</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>
<packaging>pom</packaging>

<name>FHIR Information Gateway</name>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>com.google.fhir.gateway</groupId>
<artifactId>fhir-gateway</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>
</parent>

<artifactId>server</artifactId>
Expand Down

0 comments on commit fd3be78

Please sign in to comment.