|
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> |
|
107 | 169 | <artifactId>jakarta.activation-api</artifactId> |
108 | 170 | <scope>runtime</scope> |
109 | 171 | </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>jakarta.annotation</groupId> |
| 174 | + <artifactId>jakarta.annotation-api</artifactId> |
| 175 | + </dependency> |
| 176 | + <dependency> |
| 177 | + <groupId>jakarta.inject</groupId> |
| 178 | + <artifactId>jakarta.inject-api</artifactId> |
| 179 | + </dependency> |
110 | 180 | <dependency> |
111 | 181 | <groupId>jakarta.servlet</groupId> |
112 | 182 | <artifactId>jakarta.servlet-api</artifactId> |
|
132 | 202 | <artifactId>joda-money</artifactId> |
133 | 203 | </dependency> |
134 | 204 | <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> |
| 205 | + <groupId>org.kill-bill.commons</groupId> |
| 206 | + <artifactId>killbill-jooby</artifactId> |
| 207 | + <version>${killbill-commons.version}</version> |
145 | 208 | </dependency> |
146 | 209 | <dependency> |
147 | 210 | <groupId>org.jooq</groupId> |
|
228 | 291 | <dependency> |
229 | 292 | <groupId>org.kill-bill.commons</groupId> |
230 | 293 | <artifactId>killbill-clock</artifactId> |
| 294 | + <version>${killbill-commons.version}</version> |
231 | 295 | <scope>provided</scope> |
232 | 296 | </dependency> |
233 | 297 | <dependency> |
234 | 298 | <groupId>org.kill-bill.commons</groupId> |
235 | 299 | <artifactId>killbill-embeddeddb-common</artifactId> |
| 300 | + <version>${killbill-commons.version}</version> |
236 | 301 | <scope>test</scope> |
237 | 302 | </dependency> |
238 | 303 | <dependency> |
239 | 304 | <groupId>org.kill-bill.commons</groupId> |
240 | 305 | <artifactId>killbill-embeddeddb-mysql</artifactId> |
| 306 | + <version>${killbill-commons.version}</version> |
241 | 307 | <scope>test</scope> |
242 | 308 | </dependency> |
243 | 309 | <dependency> |
244 | 310 | <groupId>org.kill-bill.commons</groupId> |
245 | 311 | <artifactId>killbill-embeddeddb-postgresql</artifactId> |
| 312 | + <version>${killbill-commons.version}</version> |
246 | 313 | <scope>test</scope> |
247 | 314 | </dependency> |
248 | 315 | <dependency> |
249 | 316 | <groupId>org.kill-bill.commons</groupId> |
250 | 317 | <artifactId>killbill-utils</artifactId> |
| 318 | + <version>${killbill-commons.version}</version> |
251 | 319 | <scope>provided</scope> |
252 | 320 | </dependency> |
253 | 321 | <dependency> |
|
292 | 360 | <artifactId>spotbugs-maven-plugin</artifactId> |
293 | 361 | <version>${spotbugs-maven-plugin.version}</version> |
294 | 362 | </plugin> |
| 363 | + <plugin> |
| 364 | + <groupId>org.apache.maven.plugins</groupId> |
| 365 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 366 | + <dependencies> |
| 367 | + <dependency> |
| 368 | + <groupId>org.codehaus.mojo</groupId> |
| 369 | + <artifactId>extra-enforcer-rules</artifactId> |
| 370 | + <version>${extra-enforcer-rules.version}</version> |
| 371 | + </dependency> |
| 372 | + </dependencies> |
| 373 | + </plugin> |
295 | 374 | <plugin> |
296 | 375 | <groupId>org.apache.maven.plugins</groupId> |
297 | 376 | <artifactId>maven-jar-plugin</artifactId> |
|
0 commit comments