|
43 | 43 | <properties> |
44 | 44 | <check.fail-spotbugs>true</check.fail-spotbugs> |
45 | 45 | <check.spotbugs-exclude-filter-file>spotbugs-exclude.xml</check.spotbugs-exclude-filter-file> |
| 46 | + <extra-enforcer-rules.version>1.12.0</extra-enforcer-rules.version> |
| 47 | + <guice.version>7.0.0</guice.version> |
| 48 | + <jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version> |
| 49 | + <jakarta.inject-api.version>2.0.1</jakarta.inject-api.version> |
| 50 | + <jakarta.servlet-api.version>5.0.0</jakarta.servlet-api.version> |
| 51 | + <jetty.version>11.0.24</jetty.version> |
| 52 | + <killbill-commons.version>0.27.0</killbill-commons.version> |
46 | 53 | <killbill-platform.version>0.40.13</killbill-platform.version> |
| 54 | + <project.build.targetJdk>21</project.build.targetJdk> |
47 | 55 | <!-- killbill-oss-parent still brings SpotBugs 4.7.2.1, whose ASM stack cannot parse |
48 | 56 | Java 21 class files. Keep this local override until the parent moves to a |
49 | 57 | Java-21-capable SpotBugs line. --> |
50 | 58 | <spotbugs-maven-plugin.version>4.9.8.3</spotbugs-maven-plugin.version> |
51 | 59 | </properties> |
| 60 | + <dependencyManagement> |
| 61 | + <dependencies> |
| 62 | + <dependency> |
| 63 | + <groupId>com.google.inject</groupId> |
| 64 | + <artifactId>guice</artifactId> |
| 65 | + <version>${guice.version}</version> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>jakarta.annotation</groupId> |
| 69 | + <artifactId>jakarta.annotation-api</artifactId> |
| 70 | + <version>${jakarta.annotation-api.version}</version> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>jakarta.inject</groupId> |
| 74 | + <artifactId>jakarta.inject-api</artifactId> |
| 75 | + <version>${jakarta.inject-api.version}</version> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>jakarta.servlet</groupId> |
| 79 | + <artifactId>jakarta.servlet-api</artifactId> |
| 80 | + <version>${jakarta.servlet-api.version}</version> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.eclipse.jetty</groupId> |
| 84 | + <artifactId>jetty-alpn-server</artifactId> |
| 85 | + <version>${jetty.version}</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.eclipse.jetty</groupId> |
| 89 | + <artifactId>jetty-http</artifactId> |
| 90 | + <version>${jetty.version}</version> |
| 91 | + </dependency> |
| 92 | + <dependency> |
| 93 | + <groupId>org.eclipse.jetty</groupId> |
| 94 | + <artifactId>jetty-io</artifactId> |
| 95 | + <version>${jetty.version}</version> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>org.eclipse.jetty</groupId> |
| 99 | + <artifactId>jetty-server</artifactId> |
| 100 | + <version>${jetty.version}</version> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>org.eclipse.jetty</groupId> |
| 104 | + <artifactId>jetty-util</artifactId> |
| 105 | + <version>${jetty.version}</version> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.eclipse.jetty.http2</groupId> |
| 109 | + <artifactId>http2-server</artifactId> |
| 110 | + <version>${jetty.version}</version> |
| 111 | + </dependency> |
| 112 | + </dependencies> |
| 113 | + </dependencyManagement> |
52 | 114 | <dependencies> |
53 | 115 | <dependency> |
54 | 116 | <groupId>com.fasterxml.jackson.core</groupId> |
|
75 | 137 | <groupId>com.fasterxml.jackson.datatype</groupId> |
76 | 138 | <artifactId>jackson-datatype-joda</artifactId> |
77 | 139 | </dependency> |
78 | | - <dependency> |
79 | | - <groupId>com.github.spotbugs</groupId> |
80 | | - <artifactId>spotbugs-annotations</artifactId> |
81 | | - </dependency> |
82 | 140 | <dependency> |
83 | 141 | <groupId>com.google.code.findbugs</groupId> |
84 | 142 | <artifactId>jsr305</artifactId> |
|
131 | 189 | <groupId>org.joda</groupId> |
132 | 190 | <artifactId>joda-money</artifactId> |
133 | 191 | </dependency> |
134 | | - <dependency> |
135 | | - <groupId>org.jooby</groupId> |
136 | | - <artifactId>jooby</artifactId> |
137 | | - </dependency> |
138 | | - <dependency> |
139 | | - <groupId>org.jooby</groupId> |
140 | | - <artifactId>jooby-jackson</artifactId> |
141 | | - </dependency> |
142 | | - <dependency> |
143 | | - <groupId>org.jooby</groupId> |
144 | | - <artifactId>jooby-servlet</artifactId> |
145 | | - </dependency> |
146 | 192 | <dependency> |
147 | 193 | <groupId>org.jooq</groupId> |
148 | 194 | <artifactId>jooq</artifactId> |
|
228 | 274 | <dependency> |
229 | 275 | <groupId>org.kill-bill.commons</groupId> |
230 | 276 | <artifactId>killbill-clock</artifactId> |
| 277 | + <version>${killbill-commons.version}</version> |
231 | 278 | <scope>provided</scope> |
232 | 279 | </dependency> |
233 | 280 | <dependency> |
234 | 281 | <groupId>org.kill-bill.commons</groupId> |
235 | 282 | <artifactId>killbill-embeddeddb-common</artifactId> |
| 283 | + <version>${killbill-commons.version}</version> |
236 | 284 | <scope>test</scope> |
237 | 285 | </dependency> |
238 | 286 | <dependency> |
239 | 287 | <groupId>org.kill-bill.commons</groupId> |
240 | 288 | <artifactId>killbill-embeddeddb-mysql</artifactId> |
| 289 | + <version>${killbill-commons.version}</version> |
241 | 290 | <scope>test</scope> |
242 | 291 | </dependency> |
243 | 292 | <dependency> |
244 | 293 | <groupId>org.kill-bill.commons</groupId> |
245 | 294 | <artifactId>killbill-embeddeddb-postgresql</artifactId> |
| 295 | + <version>${killbill-commons.version}</version> |
246 | 296 | <scope>test</scope> |
247 | 297 | </dependency> |
| 298 | + <dependency> |
| 299 | + <groupId>org.kill-bill.commons</groupId> |
| 300 | + <artifactId>killbill-jooby</artifactId> |
| 301 | + <version>${killbill-commons.version}</version> |
| 302 | + </dependency> |
248 | 303 | <dependency> |
249 | 304 | <groupId>org.kill-bill.commons</groupId> |
250 | 305 | <artifactId>killbill-utils</artifactId> |
| 306 | + <version>${killbill-commons.version}</version> |
251 | 307 | <scope>provided</scope> |
252 | 308 | </dependency> |
253 | 309 | <dependency> |
|
292 | 348 | <artifactId>spotbugs-maven-plugin</artifactId> |
293 | 349 | <version>${spotbugs-maven-plugin.version}</version> |
294 | 350 | </plugin> |
| 351 | + <plugin> |
| 352 | + <groupId>org.apache.maven.plugins</groupId> |
| 353 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 354 | + <dependencies> |
| 355 | + <dependency> |
| 356 | + <groupId>org.codehaus.mojo</groupId> |
| 357 | + <artifactId>extra-enforcer-rules</artifactId> |
| 358 | + <version>${extra-enforcer-rules.version}</version> |
| 359 | + </dependency> |
| 360 | + </dependencies> |
| 361 | + </plugin> |
295 | 362 | <plugin> |
296 | 363 | <groupId>org.apache.maven.plugins</groupId> |
297 | 364 | <artifactId>maven-jar-plugin</artifactId> |
|
0 commit comments