|
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.4-SNAPSHOT</version> |
| 6 | + <version>2.0-rc.6-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> |
|
73 | 73 | <jacoco.surefire.argLine></jacoco.surefire.argLine> |
74 | 74 | <jjwt.suite.version>0.12.6</jjwt.suite.version> |
75 | 75 | <!-- This project was registered before 2021, so it uses the old server. --> |
76 | | - <nexus.serverUrl>https://oss.sonatype.org</nexus.serverUrl> |
| 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.10.2</okio.version> |
| 78 | + <okio.version>3.16.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 | 81 | <spotbugs-maven-plugin.version>4.9.3.0</spotbugs-maven-plugin.version> |
|
89 | 89 | <dependency> |
90 | 90 | <groupId>com.fasterxml.jackson</groupId> |
91 | 91 | <artifactId>jackson-bom</artifactId> |
92 | | - <version>2.18.3</version> |
| 92 | + <version>2.20.0</version> |
93 | 93 | <type>pom</type> |
94 | 94 | <scope>import</scope> |
95 | 95 | </dependency> |
96 | 96 | <dependency> |
97 | 97 | <groupId>org.junit</groupId> |
98 | 98 | <artifactId>junit-bom</artifactId> |
99 | | - <version>5.12.1</version> |
| 99 | + <version>5.13.4</version> |
100 | 100 | <type>pom</type> |
101 | 101 | <scope>import</scope> |
102 | 102 | </dependency> |
|
146 | 146 | <groupId>com.fasterxml.jackson.datatype</groupId> |
147 | 147 | <artifactId>jackson-datatype-jsr310</artifactId> |
148 | 148 | </dependency> |
| 149 | + <dependency> |
| 150 | + <groupId>com.github.spotbugs</groupId> |
| 151 | + <artifactId>spotbugs-annotations</artifactId> |
| 152 | + <version>${spotbugs.version}</version> |
| 153 | + </dependency> |
149 | 154 | <dependency> |
150 | 155 | <groupId>com.infradna.tool</groupId> |
151 | 156 | <artifactId>bridge-method-annotation</artifactId> |
152 | | - <version>1.30</version> |
153 | | - <optional>true</optional> |
| 157 | + <version>1.31</version> |
154 | 158 | </dependency> |
155 | 159 | <dependency> |
156 | 160 | <groupId>com.squareup.okhttp3</groupId> |
|
190 | 194 | <dependency> |
191 | 195 | <groupId>org.apache.commons</groupId> |
192 | 196 | <artifactId>commons-lang3</artifactId> |
193 | | - <version>3.17.0</version> |
194 | | - </dependency> |
195 | | - <dependency> |
196 | | - <groupId>com.github.spotbugs</groupId> |
197 | | - <artifactId>spotbugs-annotations</artifactId> |
198 | | - <version>${spotbugs.version}</version> |
199 | | - <scope>provided</scope> |
| 197 | + <version>3.18.0</version> |
200 | 198 | </dependency> |
201 | 199 | <dependency> |
202 | 200 | <groupId>com.github.npathai</groupId> |
|
225 | 223 | <dependency> |
226 | 224 | <groupId>com.tngtech.archunit</groupId> |
227 | 225 | <artifactId>archunit</artifactId> |
228 | | - <version>1.4.0</version> |
| 226 | + <version>1.4.1</version> |
229 | 227 | <scope>test</scope> |
230 | 228 | </dependency> |
231 | 229 | <dependency> |
|
310 | 308 | <plugin> |
311 | 309 | <groupId>com.infradna.tool</groupId> |
312 | 310 | <artifactId>bridge-method-injector</artifactId> |
313 | | - <version>1.30</version> |
| 311 | + <version>1.31</version> |
314 | 312 | <executions> |
315 | 313 | <execution> |
316 | 314 | <goals> |
|
364 | 362 | <plugin> |
365 | 363 | <groupId>org.jacoco</groupId> |
366 | 364 | <artifactId>jacoco-maven-plugin</artifactId> |
367 | | - <version>0.8.12</version> |
| 365 | + <version>0.8.13</version> |
368 | 366 | <configuration> |
369 | 367 | <!-- no need to get data about external code. It dramatically reduces performance of JaCoCo for nothing --> |
370 | 368 | <excludes> |
|
475 | 473 | <plugin> |
476 | 474 | <groupId>com.diffplug.spotless</groupId> |
477 | 475 | <artifactId>spotless-maven-plugin</artifactId> |
478 | | - <version>2.44.3</version> |
| 476 | + <version>2.46.1</version> |
479 | 477 | <configuration> |
480 | 478 | <java> |
481 | 479 | <includes> |
|
494 | 492 | <importOrder> |
495 | 493 | <file>${basedir}/src/build/eclipse/eclipse.importorder</file> |
496 | 494 | </importOrder> |
497 | | - |
| 495 | + |
498 | 496 | <removeUnusedImports></removeUnusedImports> |
499 | | - <formatAnnotations /> |
500 | | - |
| 497 | + <formatAnnotations></formatAnnotations> |
| 498 | + |
501 | 499 | <trimTrailingWhitespace></trimTrailingWhitespace> |
502 | 500 | <endWithNewline></endWithNewline> |
503 | 501 |
|
|
0 commit comments