Skip to content

Commit cb30223

Browse files
committed
Update dependencies
1 parent 325414a commit cb30223

File tree

8 files changed

+28
-33
lines changed

8 files changed

+28
-33
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2021, Oracle and/or its affiliates.
1+
# Copyright (c) 2021, 2022, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
# First layer: dependencies for the project, cached in the /root/.m2 directory
@@ -36,7 +36,7 @@ RUN set -eux; \
3636
ENV LANG="en_US.UTF-8" \
3737
JAVA_HOME="/usr/local/java" \
3838
PATH="/operator:$JAVA_HOME/bin:$PATH" \
39-
JAVA_URL="https://download.java.net/java/GA/jdk16.0.2/d4a915d82b4c4fbb9bde534da945d746/7/GPL/openjdk-16.0.2_linux-x64_bin.tar.gz"
39+
JAVA_URL="https://download.java.net/java/GA/jdk17.0.2/dfd4a8d0985749f896bed50d7138ee7f/8/GPL/openjdk-17.0.2_linux-x64_bin.tar.gz"
4040

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

build-helper-mojo/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright (c) 2019, Oracle and/or its affiliates.
3+
Copyright (c) 2019, 2022, Oracle and/or its affiliates.
44
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
55
-->
66
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
@@ -9,7 +9,7 @@
99
<parent>
1010
<artifactId>wls-exporter-parent</artifactId>
1111
<groupId>com.oracle.wls.exporter</groupId>
12-
<version>2.0.4</version>
12+
<version>2.0.5</version>
1313
</parent>
1414

1515
<artifactId>build-helper-mojo</artifactId>
@@ -21,12 +21,12 @@
2121
<dependency>
2222
<groupId>org.apache.maven</groupId>
2323
<artifactId>maven-plugin-api</artifactId>
24-
<version>2.0</version>
24+
<version>3.8.5</version>
2525
</dependency>
2626
<dependency>
2727
<groupId>org.apache.maven.plugin-tools</groupId>
2828
<artifactId>maven-plugin-annotations</artifactId>
29-
<version>3.6.0</version>
29+
<version>3.6.4</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>org.junit.jupiter</groupId>
@@ -36,7 +36,7 @@
3636
<dependency>
3737
<groupId>org.ow2.asm</groupId>
3838
<artifactId>asm</artifactId>
39-
<version>8.0.1</version>
39+
<version>9.3</version>
4040
<scope>test</scope>
4141
</dependency>
4242
<dependency>

config_coordinator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Copyright 2019, Oracle and/or its affiliates.
1+
# Copyright 2019, 2022, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
# Start from a Debian image with the desired version of Go installed
55
# and a workspace (GOPATH) configured at /go.
6-
FROM golang:1.9.2
6+
FROM golang:1.18.1
77

88
# Copy the local files to the container's workspace.
99
COPY . /go/src/github.com/oracle/config_coordinator

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!--
2-
Copyright (c) 2019, 2021, Oracle and/or its affiliates.
2+
Copyright (c) 2019, 2022, Oracle and/or its affiliates.
33
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44
-->
55
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
66
<modelVersion>4.0.0</modelVersion>
77

88
<groupId>com.oracle.wls.exporter</groupId>
99
<artifactId>wls-exporter-parent</artifactId>
10-
<version>2.0.4</version>
10+
<version>2.0.5</version>
1111
<modules>
1212
<module>wls-exporter-core</module>
1313
</modules>
@@ -78,7 +78,7 @@
7878
<plugin>
7979
<groupId>org.jacoco</groupId>
8080
<artifactId>jacoco-maven-plugin</artifactId>
81-
<version>0.8.7</version>
81+
<version>0.8.8</version>
8282
<executions>
8383
<execution>
8484
<id>prepare-agent</id>
@@ -115,7 +115,7 @@
115115
<dependency>
116116
<groupId>org.apache.httpcomponents</groupId>
117117
<artifactId>httpcore</artifactId>
118-
<version>4.4.14</version>
118+
<version>4.4.15</version>
119119
</dependency>
120120
<dependency>
121121
<groupId>commons-fileupload</groupId>
@@ -125,37 +125,37 @@
125125
<dependency>
126126
<groupId>org.yaml</groupId>
127127
<artifactId>snakeyaml</artifactId>
128-
<version>1.28</version>
128+
<version>1.30</version>
129129
</dependency>
130130
<dependency>
131131
<groupId>com.google.code.gson</groupId>
132132
<artifactId>gson</artifactId>
133-
<version>2.8.6</version>
133+
<version>2.9.0</version>
134134
</dependency>
135135
<dependency>
136136
<groupId>commons-io</groupId>
137137
<artifactId>commons-io</artifactId>
138-
<version>2.8.0</version>
138+
<version>2.11.0</version>
139139
</dependency>
140140

141141
<!-- unit test dependencies -->
142142

143143
<dependency>
144144
<groupId>com.google.guava</groupId>
145145
<artifactId>guava</artifactId>
146-
<version>30.1.1-jre</version>
146+
<version>31.1-jre</version>
147147
<scope>test</scope>
148148
</dependency>
149149
<dependency>
150150
<groupId>com.jayway.jsonpath</groupId>
151151
<artifactId>json-path</artifactId>
152-
<version>2.5.0</version>
152+
<version>2.7.0</version>
153153
<scope>test</scope>
154154
</dependency>
155155
<dependency>
156156
<groupId>org.slf4j</groupId>
157157
<artifactId>slf4j-nop</artifactId>
158-
<version>1.6.4</version>
158+
<version>1.7.36</version>
159159
<scope>test</scope>
160160
</dependency>
161161
<dependency>
@@ -166,7 +166,7 @@
166166
<dependency>
167167
<groupId>org.junit.jupiter</groupId>
168168
<artifactId>junit-jupiter</artifactId>
169-
<version>5.7.0</version>
169+
<version>5.8.2</version>
170170
<scope>test</scope>
171171
</dependency>
172172
<dependency>

wls-exporter-core/pom.xml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright (c) 2020, 2021, Oracle and/or its affiliates.
3+
Copyright (c) 2020, 2022, Oracle and/or its affiliates.
44
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
55
-->
66
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<modelVersion>4.0.0</modelVersion>
88
<parent>
99
<artifactId>wls-exporter-parent</artifactId>
1010
<groupId>com.oracle.wls.exporter</groupId>
11-
<version>2.0.4</version>
11+
<version>2.0.5</version>
1212
</parent>
1313

1414
<artifactId>wls-exporter-core</artifactId>
@@ -94,11 +94,6 @@
9494
<profiles>
9595
<profile>
9696
<id>jdk11Client</id>
97-
<!--
98-
<activation>
99-
<jdk>[11,)</jdk>
100-
</activation>
101-
-->
10297
<build>
10398
<plugins>
10499
<plugin>

wls-exporter-sidecar/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright (c) 2021, Oracle and/or its affiliates.
3+
Copyright (c) 2021, 2022, Oracle and/or its affiliates.
44
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
55
-->
66
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<modelVersion>4.0.0</modelVersion>
88
<parent>
99
<groupId>com.oracle.wls.exporter</groupId>
1010
<artifactId>wls-exporter-parent</artifactId>
11-
<version>2.0.4</version>
11+
<version>2.0.5</version>
1212
</parent>
1313
<artifactId>wls-exporter-sidecar</artifactId>
1414
<name>WebLogic Monitoring Exporter Sidecar</name>
1515

1616
<properties>
17-
<helidon.version>2.4.0</helidon.version>
17+
<helidon.version>2.5.0</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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright (c) 2020, 2021, Oracle and/or its affiliates.
3+
Copyright (c) 2020, 2022, Oracle and/or its affiliates.
44
Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
55
-->
66
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<parent>
88
<artifactId>wls-exporter-parent</artifactId>
99
<groupId>com.oracle.wls.exporter</groupId>
10-
<version>2.0.4</version>
10+
<version>2.0.5</version>
1111
</parent>
1212
<modelVersion>4.0.0</modelVersion>
1313

wls-operator-exporter/pom.xml

Lines changed: 1 addition & 1 deletion
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.4</version>
13+
<version>2.0.5</version>
1414
</parent>
1515

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

0 commit comments

Comments
 (0)