|
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | 7 | <groupId>org.reaktivity</groupId> |
8 | 8 | <artifactId>command-log</artifactId> |
9 | | - <version>0.86</version> |
| 9 | + <version>0.87</version> |
10 | 10 | <name>Reaktivity log Command</name> |
11 | 11 | <description>Reaktivity log Command</description> |
12 | 12 | <url>https://github.com/reaktivity/command-log.java</url> |
|
50 | 50 | <checkstyle.config.location>src/conf/checkstyle/configuration.xml</checkstyle.config.location> |
51 | 51 | <checkstyle.suppressions.location>src/conf/checkstyle/suppressions.xml</checkstyle.suppressions.location> |
52 | 52 |
|
53 | | - <reaktor.version>0.161</reaktor.version> |
54 | | - <nukleus.plugin.version>0.84</nukleus.plugin.version> |
55 | | - <nukleus.amqp.spec.version>0.59</nukleus.amqp.spec.version> |
56 | | - <nukleus.mqtt.spec.version>0.60</nukleus.mqtt.spec.version> |
57 | | - <nukleus.kafka.spec.version>0.170</nukleus.kafka.spec.version> |
58 | | - <nukleus.http.spec.version>0.108</nukleus.http.spec.version> |
59 | | - <nukleus.tls.spec.version>0.61</nukleus.tls.spec.version> |
60 | | - <nukleus.proxy.spec.version>0.15</nukleus.proxy.spec.version> |
| 53 | + <reaktor.version>0.163</reaktor.version> |
| 54 | + <nukleus.plugin.version>0.85</nukleus.plugin.version> |
| 55 | + <nukleus.amqp.spec.version>0.60</nukleus.amqp.spec.version> |
| 56 | + <nukleus.mqtt.spec.version>0.61</nukleus.mqtt.spec.version> |
| 57 | + <nukleus.kafka.spec.version>0.171</nukleus.kafka.spec.version> |
| 58 | + <nukleus.http.spec.version>0.109</nukleus.http.spec.version> |
| 59 | + <nukleus.tls.spec.version>0.62</nukleus.tls.spec.version> |
| 60 | + <nukleus.proxy.spec.version>0.16</nukleus.proxy.spec.version> |
61 | 61 |
|
62 | 62 | <jacoco.coverage.ratio>1.00</jacoco.coverage.ratio> |
63 | 63 | <jacoco.missed.count>0</jacoco.missed.count> |
|
245 | 245 | <artifactId>jacoco-maven-plugin</artifactId> |
246 | 246 | <version>0.8.6</version> |
247 | 247 | <configuration> |
| 248 | + <propertyName>jacoco.java.option</propertyName> |
248 | 249 | <rules> |
249 | 250 | <rule> |
250 | 251 | <element>BUNDLE</element> |
|
272 | 273 | </execution> |
273 | 274 | </executions> |
274 | 275 | </plugin> |
| 276 | + <plugin> |
| 277 | + <groupId>org.moditect</groupId> |
| 278 | + <artifactId>moditect-maven-plugin</artifactId> |
| 279 | + <version>1.0.0.RC1</version> |
| 280 | + <configuration> |
| 281 | + <module> |
| 282 | + <moduleInfoFile>src/main/moditect/module-info.java</moduleInfoFile> |
| 283 | + </module> |
| 284 | + </configuration> |
| 285 | + <executions> |
| 286 | + <execution> |
| 287 | + <phase>package</phase> |
| 288 | + <goals> |
| 289 | + <goal>add-module-info</goal> |
| 290 | + </goals> |
| 291 | + </execution> |
| 292 | + </executions> |
| 293 | + </plugin> |
275 | 294 | <plugin> |
276 | 295 | <groupId>org.apache.maven.plugins</groupId> |
277 | 296 | <artifactId>maven-surefire-plugin</artifactId> |
278 | | - <version>2.22.1</version> |
| 297 | + <version>3.0.0-M5</version> |
279 | 298 | <configuration> |
280 | | - <argLine>@{argLine}</argLine> |
281 | | - <excludes> |
282 | | - <exclude/> |
283 | | - </excludes> |
| 299 | + <argLine>@{jacoco.java.option}</argLine> |
284 | 300 | </configuration> |
285 | 301 | </plugin> |
286 | 302 | <plugin> |
287 | 303 | <groupId>org.apache.maven.plugins</groupId> |
288 | 304 | <artifactId>maven-failsafe-plugin</artifactId> |
289 | | - <version>2.22.1</version> |
| 305 | + <version>3.0.0-M4</version> |
290 | 306 | <configuration> |
291 | | - <argLine>@{argLine}</argLine> |
| 307 | + <argLine>@{jacoco.java.option}</argLine> |
292 | 308 | </configuration> |
293 | 309 | </plugin> |
294 | 310 | </plugins> |
|
314 | 330 | <ignore></ignore> |
315 | 331 | </action> |
316 | 332 | </pluginExecution> |
| 333 | + <pluginExecution> |
| 334 | + <pluginExecutionFilter> |
| 335 | + <groupId>org.moditect</groupId> |
| 336 | + <artifactId>moditect-maven-plugin</artifactId> |
| 337 | + <versionRange>[1.0.0.RC1,)</versionRange> |
| 338 | + <goals> |
| 339 | + <goal>add-module-info</goal> |
| 340 | + </goals> |
| 341 | + </pluginExecutionFilter> |
| 342 | + <action> |
| 343 | + <ignore></ignore> |
| 344 | + </action> |
| 345 | + </pluginExecution> |
317 | 346 | </pluginExecutions> |
318 | 347 | </lifecycleMappingMetadata> |
319 | 348 | </configuration> |
|
0 commit comments