|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <!-- |
3 | 3 |
|
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. |
5 | 5 |
|
6 | 6 | This program and the accompanying materials are made available under the |
7 | 7 | terms of the Eclipse Public License v. 2.0, which is available at |
|
30 | 30 |
|
31 | 31 | <properties> |
32 | 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 33 | + <jersey.version>2.47</jersey.version> |
33 | 34 | </properties> |
34 | 35 |
|
35 | 36 | <dependencies> |
|
43 | 44 | <dependency> |
44 | 45 | <groupId>org.junit.jupiter</groupId> |
45 | 46 | <artifactId>junit-jupiter</artifactId> |
46 | | - <version>5.10.2</version> |
| 47 | + <version>5.13.4</version> |
47 | 48 | <scope>test</scope> |
48 | 49 | </dependency> |
49 | 50 |
|
50 | 51 | <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> |
54 | 55 | </dependency> |
55 | 56 |
|
56 | 57 | <dependency> |
57 | 58 | <groupId>commons-codec</groupId> |
58 | 59 | <artifactId>commons-codec</artifactId> |
59 | | - <version>1.17.0</version> |
| 60 | + <version>1.19.0</version> |
60 | 61 | </dependency> |
61 | 62 |
|
62 | 63 | <dependency> |
63 | 64 | <groupId>org.slf4j</groupId> |
64 | 65 | <artifactId>slf4j-jdk14</artifactId> |
65 | | - <version>2.0.13</version> |
| 66 | + <version>2.0.17</version> |
66 | 67 | </dependency> |
67 | 68 |
|
68 | 69 | <dependency> |
69 | 70 | <groupId>org.glassfish.jersey.containers</groupId> |
70 | 71 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 72 | + <version>${jersey.version}</version> |
71 | 73 | </dependency> |
72 | 74 | </dependencies> |
73 | 75 |
|
|
88 | 90 | <phase>package</phase> |
89 | 91 | <!-- append to the packaging phase. --> |
90 | 92 | <goals> |
91 | | - <goal>attached</goal> |
| 93 | + <goal>single</goal> |
92 | 94 | <!-- goals == mojos --> |
93 | 95 | </goals> |
94 | 96 | </execution> |
|
97 | 99 | <plugin> |
98 | 100 | <groupId>org.apache.maven.plugins</groupId> |
99 | 101 | <artifactId>maven-compiler-plugin</artifactId> |
100 | | - <version>3.13.0</version> |
| 102 | + <version>3.14.0</version> |
101 | 103 | <inherited>true</inherited> |
102 | 104 | <configuration> |
103 | 105 | <source>1.8</source> |
|
0 commit comments