|
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 | <groupId>org.toile-libre.libe</groupId> |
4 | 4 | <artifactId>curl</artifactId> |
5 | | - <version>0.0.44</version> |
| 5 | + <version>0.0.46</version> |
6 | 6 | <name>curl</name> |
7 | 7 | <description>Curl</description> |
8 | 8 | <url>https://github.com/libetl/curl</url> |
|
50 | 50 | <plugins> |
51 | 51 | <plugin> |
52 | 52 | <artifactId>maven-compiler-plugin</artifactId> |
53 | | - <version>3.14.0</version> |
| 53 | + <version>3.13.0</version> |
54 | 54 | <configuration> |
55 | 55 | <source>1.8</source> |
56 | 56 | <target>1.8</target> |
|
72 | 72 | <plugin> |
73 | 73 | <groupId>org.apache.maven.plugins</groupId> |
74 | 74 | <artifactId>maven-javadoc-plugin</artifactId> |
75 | | - <version>3.11.2</version> |
| 75 | + <version>3.10.0</version> |
76 | 76 | <configuration> |
77 | 77 | <source>8</source> |
78 | 78 | </configuration> |
|
88 | 88 | <plugin> |
89 | 89 | <groupId>org.apache.maven.plugins</groupId> |
90 | 90 | <artifactId>maven-gpg-plugin</artifactId> |
91 | | - <version>3.2.7</version> |
| 91 | + <version>3.2.5</version> |
92 | 92 | <executions> |
93 | 93 | <execution> |
94 | 94 | <id>sign-artifacts</id> |
|
99 | 99 | </execution> |
100 | 100 | </executions> |
101 | 101 | </plugin> |
102 | | - <plugin> |
103 | | - <groupId>org.sonatype.central</groupId> |
104 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
105 | | - <version>0.7.0</version> |
106 | | - <extensions>true</extensions> |
107 | | - <configuration> |
108 | | - <publishingServerId>central-sonatype</publishingServerId> |
109 | | - </configuration> |
110 | | - </plugin> |
| 102 | + <plugin> |
| 103 | + <groupId>org.sonatype.plugins</groupId> |
| 104 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 105 | + <version>1.7.0</version> |
| 106 | + <extensions>true</extensions> |
| 107 | + <configuration> |
| 108 | + <serverId>ossrh</serverId> |
| 109 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 110 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 111 | + </configuration> |
| 112 | + </plugin> |
111 | 113 | <plugin> |
112 | 114 | <groupId>org.apache.maven.plugins</groupId> |
113 | 115 | <artifactId>maven-release-plugin</artifactId> |
|
156 | 158 | <dependency> |
157 | 159 | <groupId>org.apache.httpcomponents.client5</groupId> |
158 | 160 | <artifactId>httpclient5</artifactId> |
159 | | - <version>5.4.2</version> |
| 161 | + <version>5.5.1</version> |
160 | 162 | </dependency> |
161 | 163 | <dependency> |
162 | 164 | <groupId>org.javassist</groupId> |
163 | 165 | <artifactId>javassist</artifactId> |
164 | 166 | <version>3.30.2-GA</version> |
165 | 167 | <scope>test</scope> |
166 | 168 | </dependency> |
167 | | - <dependency> |
168 | | - <groupId>junit</groupId> |
169 | | - <artifactId>junit</artifactId> |
170 | | - <version>4.13.2</version> |
171 | | - <scope>test</scope> |
172 | | - </dependency> |
| 169 | + <dependency> |
| 170 | + <groupId>org.junit.jupiter</groupId> |
| 171 | + <artifactId>junit-jupiter-api</artifactId> |
| 172 | + <version>6.0.1</version> |
| 173 | + <scope>test</scope> |
| 174 | + </dependency> |
| 175 | + <dependency> |
| 176 | + <groupId>org.junit.jupiter</groupId> |
| 177 | + <artifactId>junit-jupiter-engine</artifactId> |
| 178 | + <version>6.0.1</version> |
| 179 | + <scope>test</scope> |
| 180 | + </dependency> |
| 181 | + <dependency> |
| 182 | + <groupId>org.junit.platform</groupId> |
| 183 | + <artifactId>junit-platform-engine</artifactId> |
| 184 | + <version>6.0.1</version> |
| 185 | + <scope>test</scope> |
| 186 | + </dependency> |
173 | 187 | <dependency> |
174 | 188 | <groupId>org.assertj</groupId> |
175 | 189 | <artifactId>assertj-core</artifactId> |
|
179 | 193 | <dependency> |
180 | 194 | <groupId>org.springframework.boot</groupId> |
181 | 195 | <artifactId>spring-boot-starter-security</artifactId> |
182 | | - <version>3.4.3</version> |
| 196 | + <version>4.0.0</version> |
183 | 197 | <scope>test</scope> |
184 | 198 | <exclusions> |
185 | 199 | <exclusion> |
|
191 | 205 | <dependency> |
192 | 206 | <groupId>org.springframework.boot</groupId> |
193 | 207 | <artifactId>spring-boot-starter-web</artifactId> |
194 | | - <version>3.4.3</version> |
| 208 | + <version>4.0.0</version> |
195 | 209 | <scope>test</scope> |
196 | 210 | <exclusions> |
197 | 211 | <exclusion> |
|
203 | 217 | <dependency> |
204 | 218 | <groupId>org.springframework.boot</groupId> |
205 | 219 | <artifactId>spring-boot-starter-jetty</artifactId> |
206 | | - <version>3.4.3</version> |
| 220 | + <version>4.0.0</version> |
207 | 221 | <scope>test</scope> |
208 | 222 | </dependency> |
209 | 223 | <dependency> |
210 | 224 | <groupId>org.springframework.boot</groupId> |
211 | 225 | <artifactId>spring-boot-starter</artifactId> |
212 | | - <version>3.4.3</version> |
| 226 | + <version>4.0.0</version> |
213 | 227 | <scope>test</scope> |
214 | 228 | <exclusions> |
215 | 229 | <exclusion> |
|
221 | 235 | <dependency> |
222 | 236 | <groupId>org.springframework</groupId> |
223 | 237 | <artifactId>spring-context</artifactId> |
224 | | - <version>6.2.3</version> |
| 238 | + <version>7.0.1</version> |
225 | 239 | <scope>test</scope> |
226 | 240 | </dependency> |
227 | 241 | <dependency> |
|
251 | 265 | <dependency> |
252 | 266 | <groupId>com.google.guava</groupId> |
253 | 267 | <artifactId>guava</artifactId> |
254 | | - <version>33.4.0-jre</version> |
| 268 | + <version>33.5.0-jre</version> |
255 | 269 | <scope>test</scope> |
256 | 270 | </dependency> |
257 | 271 | <dependency> |
258 | | - <groupId>com.fasterxml.jackson.core</groupId> |
| 272 | + <groupId>tools.jackson.core</groupId> |
259 | 273 | <artifactId>jackson-core</artifactId> |
260 | | - <version>2.18.3</version> |
| 274 | + <version>3.0.2</version> |
261 | 275 | <scope>test</scope> |
262 | 276 | </dependency> |
263 | 277 | <dependency> |
264 | | - <groupId>com.fasterxml.jackson.core</groupId> |
| 278 | + <groupId>tools.jackson.core</groupId> |
265 | 279 | <artifactId>jackson-databind</artifactId> |
266 | | - <version>2.18.3</version> |
| 280 | + <version>3.0.2</version> |
267 | 281 | <scope>test</scope> |
268 | 282 | </dependency> |
269 | 283 | <dependency> |
|
0 commit comments