|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | | - |
6 | 5 | <modelVersion>4.0.0</modelVersion> |
7 | 6 | <groupId>com.github.daggerok</groupId> |
8 | 7 | <artifactId>jersey-netty-cdi-jackson-file-eventstore</artifactId> |
9 | 8 | <version>3.0.0-SNAPSHOT</version> |
10 | 9 | <packaging>jar</packaging> |
11 | | - |
12 | 10 | <properties> |
13 | 11 | <mainClass>daggerok.Main</mainClass> |
14 | | - |
15 | 12 | <java.version>11</java.version> |
16 | 13 | <maven.compiler.source>${java.version}</maven.compiler.source> |
17 | 14 | <maven.compiler.target>${java.version}</maven.compiler.target> |
18 | | - |
19 | 15 | <encoding>UTF-8</encoding> |
20 | 16 | <project.build.sourceEncoding>${encoding}</project.build.sourceEncoding> |
21 | 17 | <project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding> |
22 | | - |
23 | 18 | <vavr.version>0.10.2</vavr.version> |
24 | 19 | <slf4j.version>1.7.28</slf4j.version> |
25 | 20 | <jersey.version>2.29</jersey.version> |
|
34 | 29 | <jandex-maven-plugin.version>1.0.6</jandex-maven-plugin.version> |
35 | 30 | <capsule-maven-plugin.version>1.5.1</capsule-maven-plugin.version> |
36 | 31 | <spotbugs-maven-plugin.version>3.1.12.2</spotbugs-maven-plugin.version> |
37 | | - <maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version> |
38 | | - |
| 32 | + <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version> |
39 | 33 | <bundle>bundle</bundle> |
40 | 34 | </properties> |
41 | | - |
42 | 35 | <dependencyManagement> |
43 | 36 | <dependencies> |
44 | 37 | <dependency> |
|
78 | 71 | </dependency> |
79 | 72 | </dependencies> |
80 | 73 | </dependencyManagement> |
81 | | - |
82 | 74 | <dependencies> |
83 | 75 | <dependency> |
84 | 76 | <groupId>org.jboss</groupId> |
|
152 | 144 | <version>${assertj.version}</version> |
153 | 145 | </dependency> |
154 | 146 | </dependencies> |
155 | | - |
156 | 147 | <build> |
157 | 148 | <defaultGoal>clean package</defaultGoal> |
158 | | - |
159 | 149 | <plugins> |
160 | 150 | <plugin> |
161 | 151 | <groupId>org.apache.maven.plugins</groupId> |
|
177 | 167 | </execution> |
178 | 168 | </executions> |
179 | 169 | </plugin> |
180 | | - |
181 | 170 | <!-- fat jar --> |
182 | 171 | <plugin> |
183 | 172 | <groupId>com.github.chrisdchristo</groupId> |
|
196 | 185 | </execution> |
197 | 186 | </executions> |
198 | 187 | </plugin> |
199 | | - |
200 | 188 | <!-- In safe with SptBugs... --> |
201 | 189 | <plugin> |
202 | 190 | <groupId>com.github.spotbugs</groupId> |
|
218 | 206 | </execution> |
219 | 207 | </executions> |
220 | 208 | </plugin> |
221 | | - |
222 | 209 | <plugin> |
223 | 210 | <groupId>org.codehaus.mojo</groupId> |
224 | 211 | <artifactId>exec-maven-plugin</artifactId> |
|
237 | 224 | </plugin> |
238 | 225 | </plugins> |
239 | 226 | </build> |
240 | | - |
241 | 227 | <reporting> |
242 | 228 | <plugins> |
243 | 229 | <plugin> |
|
247 | 233 | </plugin> |
248 | 234 | </plugins> |
249 | 235 | </reporting> |
250 | | - |
251 | 236 | <profiles> |
252 | 237 | <profile> |
253 | 238 | <id>gem-install</id> |
|
272 | 257 | </plugins> |
273 | 258 | </build> |
274 | 259 | </profile> |
275 | | - |
276 | 260 | <profile> |
277 | 261 | <id>bundle-update-jekyll</id> |
278 | 262 | <build> |
|
293 | 277 | </plugins> |
294 | 278 | </build> |
295 | 279 | </profile> |
296 | | - |
297 | 280 | <profile> |
298 | 281 | <id>bundle-install</id> |
299 | 282 | <build> |
|
313 | 296 | </plugins> |
314 | 297 | </build> |
315 | 298 | </profile> |
316 | | - |
317 | 299 | <profile> |
318 | 300 | <id>jekyll-search</id> |
319 | 301 | <build> |
|
336 | 318 | </plugins> |
337 | 319 | </build> |
338 | 320 | </profile> |
339 | | - |
340 | 321 | <profile> |
341 | 322 | <id>jekyll-build</id> |
342 | 323 | <build> |
|
358 | 339 | </plugins> |
359 | 340 | </build> |
360 | 341 | </profile> |
361 | | - |
362 | 342 | <profile> |
363 | 343 | <id>jekyll-serve</id> |
364 | 344 | <build> |
|
381 | 361 | </build> |
382 | 362 | </profile> |
383 | 363 | </profiles> |
384 | | - |
385 | 364 | </project> |
0 commit comments