|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.kohsuke</groupId> |
5 | 5 | <artifactId>${github-api.artifactId}</artifactId> |
6 | | - <version>2.0-rc.6-SNAPSHOT</version> |
| 6 | + <version>2.0-rc.8-SNAPSHOT</version> |
7 | 7 | <name>GitHub API for Java</name> |
8 | 8 | <description>GitHub API for Java</description> |
9 | 9 | <url>https://hub4j.github.io/github-api/</url> |
|
75 | 75 | <!-- This project was registered before 2021, so it uses the old server. --> |
76 | 76 | <nexus.serverUrl>https://ossrh-staging-api.central.sonatype.com</nexus.serverUrl> |
77 | 77 | <okhttp3.version>4.12.0</okhttp3.version> |
78 | | - <okio.version>3.16.0</okio.version> |
| 78 | + <okio.version>3.17.0</okio.version> |
79 | 79 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
80 | 80 | <spotbugs-maven-plugin.failOnError>true</spotbugs-maven-plugin.failOnError> |
81 | | - <spotbugs-maven-plugin.version>4.9.8.2</spotbugs-maven-plugin.version> |
| 81 | + <spotbugs-maven-plugin.version>4.9.8.3</spotbugs-maven-plugin.version> |
82 | 82 | <spotbugs.version>4.8.6</spotbugs.version> |
83 | 83 | <spring.boot.version>3.4.5</spring.boot.version> |
84 | 84 | <surefire.argLine></surefire.argLine> |
|
89 | 89 | <dependency> |
90 | 90 | <groupId>com.fasterxml.jackson</groupId> |
91 | 91 | <artifactId>jackson-bom</artifactId> |
92 | | - <version>2.21.0</version> |
| 92 | + <version>2.21.2</version> |
93 | 93 | <type>pom</type> |
94 | 94 | <scope>import</scope> |
95 | 95 | </dependency> |
|
103 | 103 | <dependency> |
104 | 104 | <groupId>org.slf4j</groupId> |
105 | 105 | <artifactId>slf4j-bom</artifactId> |
106 | | - <version>2.0.17</version> |
| 106 | + <version>2.0.18</version> |
107 | 107 | <type>pom</type> |
108 | 108 | <scope>import</scope> |
109 | 109 | </dependency> |
|
194 | 194 | <dependency> |
195 | 195 | <groupId>org.apache.commons</groupId> |
196 | 196 | <artifactId>commons-lang3</artifactId> |
197 | | - <version>3.19.0</version> |
| 197 | + <version>3.20.0</version> |
198 | 198 | </dependency> |
199 | 199 | <dependency> |
200 | 200 | <groupId>com.github.npathai</groupId> |
|
211 | 211 | <dependency> |
212 | 212 | <groupId>com.google.code.gson</groupId> |
213 | 213 | <artifactId>gson</artifactId> |
214 | | - <version>2.13.2</version> |
| 214 | + <version>2.14.0</version> |
215 | 215 | <scope>test</scope> |
216 | 216 | </dependency> |
217 | 217 | <dependency> |
218 | 218 | <groupId>com.google.guava</groupId> |
219 | 219 | <artifactId>guava</artifactId> |
220 | | - <version>33.4.6-jre</version> |
| 220 | + <version>33.5.0-jre</version> |
221 | 221 | <scope>test</scope> |
222 | 222 | </dependency> |
223 | 223 | <dependency> |
224 | 224 | <groupId>com.tngtech.archunit</groupId> |
225 | 225 | <artifactId>archunit</artifactId> |
226 | | - <version>1.4.1</version> |
| 226 | + <version>1.4.2</version> |
227 | 227 | <scope>test</scope> |
228 | 228 | </dependency> |
229 | 229 | <dependency> |
|
268 | 268 | <dependency> |
269 | 269 | <groupId>org.mockito</groupId> |
270 | 270 | <artifactId>mockito-core</artifactId> |
271 | | - <version>5.21.0</version> |
| 271 | + <version>5.23.0</version> |
272 | 272 | <scope>test</scope> |
273 | 273 | </dependency> |
274 | 274 | <!-- |
|
340 | 340 | </plugin> |
341 | 341 | <plugin> |
342 | 342 | <artifactId>maven-resources-plugin</artifactId> |
343 | | - <version>3.3.1</version> |
| 343 | + <version>3.5.0</version> |
344 | 344 | </plugin> |
345 | 345 | <plugin> |
346 | 346 | <artifactId>maven-source-plugin</artifactId> |
347 | | - <version>3.3.1</version> |
| 347 | + <version>3.4.0</version> |
348 | 348 | </plugin> |
349 | 349 | <plugin> |
350 | 350 | <artifactId>maven-surefire-plugin</artifactId> |
|
357 | 357 | <plugin> |
358 | 358 | <groupId>org.codehaus.mojo</groupId> |
359 | 359 | <artifactId>versions-maven-plugin</artifactId> |
360 | | - <version>2.18.0</version> |
| 360 | + <version>2.21.0</version> |
361 | 361 | </plugin> |
362 | 362 | <plugin> |
363 | 363 | <groupId>org.jacoco</groupId> |
364 | 364 | <artifactId>jacoco-maven-plugin</artifactId> |
365 | | - <version>0.8.14</version> |
| 365 | + <version>0.8.15</version> |
366 | 366 | <configuration> |
367 | 367 | <!-- no need to get data about external code. It dramatically reduces performance of JaCoCo for nothing --> |
368 | 368 | <excludes> |
|
535 | 535 | <plugin> |
536 | 536 | <groupId>com.github.siom79.japicmp</groupId> |
537 | 537 | <artifactId>japicmp-maven-plugin</artifactId> |
538 | | - <version>0.23.1</version> |
| 538 | + <version>0.26.1</version> |
539 | 539 | <configuration> |
540 | 540 | <parameter> |
541 | 541 | <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications> |
|
585 | 585 | </plugin> |
586 | 586 | <plugin> |
587 | 587 | <artifactId>maven-compiler-plugin</artifactId> |
588 | | - <version>3.14.0</version> |
| 588 | + <version>3.15.0</version> |
589 | 589 | <configuration> |
590 | 590 | <source>11</source> |
591 | 591 | <target>11</target> |
|
602 | 602 | <plugin> |
603 | 603 | <groupId>org.apache.maven.plugins</groupId> |
604 | 604 | <artifactId>maven-jar-plugin</artifactId> |
605 | | - <version>3.4.2</version> |
| 605 | + <version>3.5.0</version> |
606 | 606 | <configuration> |
607 | 607 | <archive> |
608 | 608 | <manifestEntries> |
|
626 | 626 | <plugin> |
627 | 627 | <groupId>org.apache.maven.plugins</groupId> |
628 | 628 | <artifactId>maven-release-plugin</artifactId> |
629 | | - <version>3.1.1</version> |
| 629 | + <version>3.3.1</version> |
630 | 630 | <configuration> |
631 | 631 | <autoVersionSubmodules>true</autoVersionSubmodules> |
632 | 632 | <useReleaseProfile>false</useReleaseProfile> |
|
637 | 637 | <plugin> |
638 | 638 | <groupId>org.apache.maven.plugins</groupId> |
639 | 639 | <artifactId>maven-site-plugin</artifactId> |
640 | | - <version>3.21.0</version> |
| 640 | + <version>3.22.0</version> |
641 | 641 | </plugin> |
642 | 642 | <plugin> |
643 | 643 | <artifactId>maven-surefire-plugin</artifactId> |
|
683 | 683 | <extension> |
684 | 684 | <groupId>org.apache.maven.scm</groupId> |
685 | 685 | <artifactId>maven-scm-provider-gitexe</artifactId> |
686 | | - <version>2.1.0</version> |
| 686 | + <version>2.2.1</version> |
687 | 687 | </extension> |
688 | 688 | <extension> |
689 | 689 | <groupId>org.apache.maven.scm</groupId> |
|
904 | 904 | <plugin> |
905 | 905 | <groupId>org.apache.maven.plugins</groupId> |
906 | 906 | <artifactId>maven-enforcer-plugin</artifactId> |
907 | | - <version>3.5.0</version> |
| 907 | + <version>3.6.3</version> |
908 | 908 | <executions> |
909 | 909 | <execution> |
910 | 910 | <id>enforce-jacoco-exist</id> |
|
0 commit comments