diff --git a/Dockerfile b/Dockerfile index 7fd3548..25f9e01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ ADD src ./src RUN mvn -DskipTests clean package FROM openjdk:8-jdk as run -COPY --from=build /app/target/mediator-xds-1.0.4-jar-with-dependencies.jar /mediator-xds-1.0.4-jar-with-dependencies.jar +COPY --from=build /app/target/mediator-xds-1.0.5-jar-with-dependencies.jar /mediator-xds-1.0.5-jar-with-dependencies.jar COPY --from=build /app/src/main/resources/mediator.properties /mediator.properties -ENTRYPOINT java -jar /mediator-xds-1.0.4-jar-with-dependencies.jar --conf /mediator.properties \ No newline at end of file +ENTRYPOINT java -jar /mediator-xds-1.0.5-jar-with-dependencies.jar --conf /mediator.properties \ No newline at end of file diff --git a/README.md b/README.md index b01e174..c669203 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ ATNA auditing is supported for requests. # Usage * Ensure that a [Java Runtime Environment](http://java.com/en/) is installed on your system. At a minimum Java 7 is required. -* Download the latest release of the mediator: `curl -LO https://github.com/jembi/openhim-mediator-xds/releases/download/v1.0.4/openhim-mediator-xds-1.0.4.tar.gz` -* Extract the downloaded archive: `tar -xzf openhim-mediator-xds-1.0.4.tar.gz` +* Download the latest release of the mediator: `curl -LO https://github.com/jembi/openhim-mediator-xds/releases/download/v1.0.5/openhim-mediator-xds-1.0.5.tar.gz` +* Extract the downloaded archive: `tar -xzf openhim-mediator-xds-1.0.5.tar.gz` * Edit the properties file `mediator.properties` and change it as required for your implementantion -* The mediator is packaged as a standalone jar and can be run as follows: `java -jar mediator-xds-1.0.4-jar-with-dependencies.jar --conf mediator.properties` +* The mediator is packaged as a standalone jar and can be run as follows: `java -jar mediator-xds-1.0.5-jar-with-dependencies.jar --conf mediator.properties` # Compiling and running from source * `git clone https://github.com/jembi/openhim-mediator-xds.git` * `cd openhim-mediator-xds` * `mvn install` -* `java -jar target/mediator-xds-1.0.4-jar-with-dependencies.jar` +* `java -jar target/mediator-xds-1.0.5-jar-with-dependencies.jar` diff --git a/docker-compose.yaml b/docker-compose.yaml index 8df1056..f0f302b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -10,4 +10,4 @@ services: volumes: #data is the directory which you want to persist the generated parquet files - ./src/main/resources/mediator.properties:/mediator.properties - entrypoint: 'java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=1044 -jar /mediator-xds-1.0.4-jar-with-dependencies.jar --conf /mediator.properties' + entrypoint: 'java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=1044 -jar /mediator-xds-1.0.5-jar-with-dependencies.jar --conf /mediator.properties'