Skip to content

Commit

Permalink
Merge pull request #1578 from IBM/lee-master
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Surprenant <lmsurpre@us.ibm.com>
  • Loading branch information
lmsurpre authored Oct 14, 2020
2 parents 81cea9f + 08ba9c2 commit 8ac1af9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions fhir-install/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
# ----------------------------------------------------------------------------

FROM openliberty/open-liberty:20.0.0.6-full-java8-openj9-ubi as base
FROM openliberty/open-liberty:20.0.0.9-full-java8-openj9-ubi as base

ENV LICENSE accept

Expand All @@ -20,7 +20,7 @@ RUN unzip -qq /tmp/fhir-server-distribution.zip -d /tmp && \

# ----------------------------------------------------------------------------

FROM openliberty/open-liberty:20.0.0.6-full-java8-openj9-ubi
FROM openliberty/open-liberty:20.0.0.9-full-java8-openj9-ubi
COPY --chown=1001:0 --from=base /opt/ol/wlp /opt/ol/wlp

MAINTAINER Lee Surprenant <lmsurpre@us.ibm.com>
Expand Down
2 changes: 1 addition & 1 deletion fhir-install/src/main/resources/scripts/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

SETLOCAL ENABLEDELAYEDEXPANSION

set LIBERTY_VERSION=20.0.0.6
set LIBERTY_VERSION=20.0.0.9

echo Executing %0 to deploy the fhir-server web application...

Expand Down
2 changes: 1 addition & 1 deletion fhir-install/src/main/resources/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: Apache-2.0
###############################################################################

export LIBERTY_VERSION="20.0.0.6"
export LIBERTY_VERSION="20.0.0.9"

echo "
Executing $0 to deploy the fhir-server web application...
Expand Down
14 changes: 9 additions & 5 deletions fhir-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<name>IBM FHIR Server</name>

<properties>
<liberty.version>20.0.0.6</liberty.version>
<liberty.version>20.0.0.9</liberty.version>
<derby.version>10.14.2.0</derby.version>
<db2.version>11.5.0.0</db2.version>
<postgresql.version>42.2.12</postgresql.version>
Expand Down Expand Up @@ -590,7 +590,8 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- 3.0.1 is the highest version we support as 3.1.0 changes the ability to aggregate multi-module projects. It's not possible-->
<!-- 3.0.1 is the highest version we support as 3.1.0
changes the ability to aggregate multi-module projects. It's not possible -->
<version>3.0.1</version>
<configuration>
<!-- speed up the build -->
Expand All @@ -607,7 +608,8 @@
<maxmemory>2g</maxmemory>
<!-- doclint is none, otherwise build breaks -->
<doclint>none</doclint>
<additionalparam>-Xdoclint:none -Djava.awt.headless=true</additionalparam>
<additionalparam>-Xdoclint:none
-Djava.awt.headless=true</additionalparam>
<detectLinks>true</detectLinks>
<docletArtifact>
<groupId>nl.talsmasoftware</groupId>
Expand Down Expand Up @@ -921,7 +923,8 @@
<source>8</source>
<verbose>true</verbose>
<doclint>none</doclint>
<additionalparam>-Xdoclint:none -Djava.awt.headless=true</additionalparam>
<additionalparam>-Xdoclint:none
-Djava.awt.headless=true</additionalparam>
<minmemory>2g</minmemory>
<maxmemory>2g</maxmemory>
<nohelp>true</nohelp>
Expand Down Expand Up @@ -979,7 +982,8 @@
<maxmemory>2g</maxmemory>
<!-- doclint is none, otherwise build breaks -->
<doclint>none</doclint>
<additionalparam>-Xdoclint:none -Djava.awt.headless=true</additionalparam>
<additionalparam>-Xdoclint:none
-Djava.awt.headless=true</additionalparam>
<detectLinks>true</detectLinks>
<docletArtifact>
<groupId>nl.talsmasoftware</groupId>
Expand Down

0 comments on commit 8ac1af9

Please sign in to comment.