Skip to content

Commit f9a9123

Browse files
committed
Dependency update for the monitoring performance test-case
Signed-off-by: Maxim Nesen <[email protected]>
1 parent b92e57f commit f9a9123

File tree

2 files changed

+46
-9
lines changed

2 files changed

+46
-9
lines changed

tests/performance/test-cases/monitoring/pom.xml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2014, 2022 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2014, 2025 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0, which is available at
@@ -30,6 +30,7 @@
3030

3131
<properties>
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33+
<jersey.version>2.47</jersey.version>
3334
</properties>
3435

3536
<dependencies>
@@ -43,31 +44,32 @@
4344
<dependency>
4445
<groupId>org.junit.jupiter</groupId>
4546
<artifactId>junit-jupiter</artifactId>
46-
<version>5.10.2</version>
47+
<version>5.13.4</version>
4748
<scope>test</scope>
4849
</dependency>
4950

5051
<dependency>
51-
<groupId>commons-lang</groupId>
52-
<artifactId>commons-lang</artifactId>
53-
<version>2.6</version>
52+
<groupId>org.apache.commons</groupId>
53+
<artifactId>commons-lang3</artifactId>
54+
<version>3.18.0</version>
5455
</dependency>
5556

5657
<dependency>
5758
<groupId>commons-codec</groupId>
5859
<artifactId>commons-codec</artifactId>
59-
<version>1.17.0</version>
60+
<version>1.19.0</version>
6061
</dependency>
6162

6263
<dependency>
6364
<groupId>org.slf4j</groupId>
6465
<artifactId>slf4j-jdk14</artifactId>
65-
<version>2.0.13</version>
66+
<version>2.0.17</version>
6667
</dependency>
6768

6869
<dependency>
6970
<groupId>org.glassfish.jersey.containers</groupId>
7071
<artifactId>jersey-container-grizzly2-http</artifactId>
72+
<version>${jersey.version}</version>
7173
</dependency>
7274
</dependencies>
7375

@@ -88,7 +90,7 @@
8890
<phase>package</phase>
8991
<!-- append to the packaging phase. -->
9092
<goals>
91-
<goal>attached</goal>
93+
<goal>single</goal>
9294
<!-- goals == mojos -->
9395
</goals>
9496
</execution>
@@ -97,7 +99,7 @@
9799
<plugin>
98100
<groupId>org.apache.maven.plugins</groupId>
99101
<artifactId>maven-compiler-plugin</artifactId>
100-
<version>3.13.0</version>
102+
<version>3.14.0</version>
101103
<inherited>true</inherited>
102104
<configuration>
103105
<source>1.8</source>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!--
2+
3+
Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.
4+
5+
This program and the accompanying materials are made available under the
6+
terms of the Eclipse Public License v. 2.0, which is available at
7+
http://www.eclipse.org/legal/epl-2.0.
8+
9+
This Source Code may also be made available under the following Secondary
10+
Licenses when the conditions for such availability set forth in the
11+
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
12+
version 2 with the GNU Classpath Exception, which is available at
13+
https://www.gnu.org/software/classpath/license.html.
14+
15+
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
16+
17+
-->
18+
19+
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
20+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
22+
<id>zip-with-jars</id>
23+
<formats>
24+
<format>zip</format>
25+
</formats>
26+
<includeBaseDirectory>false</includeBaseDirectory>
27+
<dependencySets>
28+
<dependencySet>
29+
<outputDirectory>/</outputDirectory>
30+
<useProjectArtifact>true</useProjectArtifact>
31+
<unpack>false</unpack>
32+
<scope>runtime</scope>
33+
</dependencySet>
34+
</dependencySets>
35+
</assembly>

0 commit comments

Comments
 (0)