Skip to content

Commit bb75921

Browse files
committed
Update dependencies and prepare for release
1 parent 555dcb4 commit bb75921

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ COPY wls-exporter-sidecar/ wls-exporter-sidecar/
2525
RUN mvn -B -e -C install -Ddocker-build -DskipTests=true
2626

2727
# Install Java on top of the linux image
28-
FROM oraclelinux:8-slim as linux
28+
FROM ghcr.io/oracle/oraclelinux:8-slim as linux
2929
WORKDIR /tmp
3030

3131
RUN set -eux; \
@@ -35,8 +35,8 @@ RUN set -eux; \
3535
ENV LANG="en_US.UTF-8" \
3636
JAVA_HOME="/usr/local/java" \
3737
PATH="/operator:$JAVA_HOME/bin:$PATH" \
38-
JAVA_VERSION="15" \
39-
JAVA_URL="https://download.java.net/java/GA/jdk15.0.2/0d1cfde4252546c6931946de8db48ee2/7/GPL/openjdk-15.0.2_linux-x64_bin.tar.gz"
38+
JAVA_VERSION="16" \
39+
JAVA_URL="https://download.java.net/java/GA/jdk16/7863447f0ab643c585b9bdebf67c69db/36/GPL/openjdk-16_linux-x64_bin.tar.gz"
4040

4141
RUN set -eux; \
4242
curl -fL -o /jdk.tar.gz "$JAVA_URL"; \

build-helper-mojo/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<artifactId>wls-exporter-parent</artifactId>
1111
<groupId>com.oracle.wls.exporter</groupId>
12-
<version>2.0.1-SNAPSHOT</version>
12+
<version>2.0.1</version>
1313
</parent>
1414

1515
<artifactId>build-helper-mojo</artifactId>

pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.oracle.wls.exporter</groupId>
99
<artifactId>wls-exporter-parent</artifactId>
10-
<version>2.0.1-SNAPSHOT</version>
10+
<version>2.0.1</version>
1111
<modules>
1212
<module>wls-exporter-core</module>
1313
</modules>
@@ -82,18 +82,18 @@
8282
<dependency>
8383
<groupId>javax.servlet</groupId>
8484
<artifactId>javax.servlet-api</artifactId>
85-
<version>3.1.0</version>
85+
<version>4.0.1</version>
8686
<scope>provided</scope>
8787
</dependency>
8888
<dependency>
8989
<groupId>org.apache.httpcomponents</groupId>
9090
<artifactId>httpclient</artifactId>
91-
<version>4.5.12</version>
91+
<version>4.5.13</version>
9292
</dependency>
9393
<dependency>
9494
<groupId>org.apache.httpcomponents</groupId>
9595
<artifactId>httpcore</artifactId>
96-
<version>4.4.13</version>
96+
<version>4.4.14</version>
9797
</dependency>
9898
<dependency>
9999
<groupId>commons-fileupload</groupId>
@@ -103,7 +103,7 @@
103103
<dependency>
104104
<groupId>org.yaml</groupId>
105105
<artifactId>snakeyaml</artifactId>
106-
<version>1.26</version>
106+
<version>1.28</version>
107107
</dependency>
108108
<dependency>
109109
<groupId>com.google.code.gson</groupId>
@@ -113,21 +113,21 @@
113113
<dependency>
114114
<groupId>commons-io</groupId>
115115
<artifactId>commons-io</artifactId>
116-
<version>2.7</version>
116+
<version>2.8.0</version>
117117
</dependency>
118118

119119
<!-- unit test dependencies -->
120120

121121
<dependency>
122122
<groupId>com.google.guava</groupId>
123123
<artifactId>guava</artifactId>
124-
<version>29.0-jre</version>
124+
<version>30.1.1-jre</version>
125125
<scope>test</scope>
126126
</dependency>
127127
<dependency>
128128
<groupId>com.jayway.jsonpath</groupId>
129129
<artifactId>json-path</artifactId>
130-
<version>2.4.0</version>
130+
<version>2.5.0</version>
131131
<scope>test</scope>
132132
</dependency>
133133
<dependency>
@@ -150,7 +150,7 @@
150150
<dependency>
151151
<groupId>com.meterware.simplestub</groupId>
152152
<artifactId>simplestub</artifactId>
153-
<version>1.2.12</version>
153+
<version>1.3.0</version>
154154
<scope>test</scope>
155155
</dependency>
156156
<dependency>
@@ -162,7 +162,7 @@
162162
<dependency>
163163
<groupId>org.httpunit</groupId>
164164
<artifactId>httpunit</artifactId>
165-
<version>1.7.2</version>
165+
<version>1.7.3</version>
166166
<scope>test</scope>
167167
<exclusions>
168168
<exclusion>

wls-exporter-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>wls-exporter-parent</artifactId>
1010
<groupId>com.oracle.wls.exporter</groupId>
11-
<version>2.0.1-SNAPSHOT</version>
11+
<version>2.0.1</version>
1212
</parent>
1313

1414
<artifactId>wls-exporter-core</artifactId>

wls-exporter-sidecar/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
<parent>
99
<groupId>com.oracle.wls.exporter</groupId>
1010
<artifactId>wls-exporter-parent</artifactId>
11-
<version>2.0.1-SNAPSHOT</version>
11+
<version>2.0.1</version>
1212
</parent>
1313
<artifactId>wls-exporter-sidecar</artifactId>
1414
<name>WebLogic Monitoring Exporter Sidecar</name>
1515

1616
<properties>
17-
<helidon.version>2.2.0</helidon.version>
17+
<helidon.version>2.2.2</helidon.version>
1818
<mainClass>com.oracle.wls.exporter.sidecar.Main</mainClass>
1919

2020
<maven.compiler.source>11</maven.compiler.source>

wls-exporter-war/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>wls-exporter-parent</artifactId>
99
<groupId>com.oracle.wls.exporter</groupId>
10-
<version>2.0.1-SNAPSHOT</version>
10+
<version>2.0.1</version>
1111
</parent>
1212
<modelVersion>4.0.0</modelVersion>
1313

wls-operator-exporter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>wls-exporter-parent</artifactId>
1212
<groupId>com.oracle.wls.exporter</groupId>
13-
<version>2.0.0-SNAPSHOT</version>
13+
<version>2.0.0</version>
1414
</parent>
1515

1616
<artifactId>wls-operator-exporter</artifactId>

0 commit comments

Comments
 (0)