|
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | 7 | <groupId>org.reaktivity</groupId> |
8 | 8 | <artifactId>ry</artifactId> |
9 | | - <version>0.52</version> |
| 9 | + <version>0.53</version> |
10 | 10 | <name>Reaktivity Tool for Java</name> |
11 | 11 | <description>Reaktivity Tool for Java</description> |
12 | 12 | <url>https://github.com/reaktivity/ry.java</url> |
|
181 | 181 | <artifactId>jacoco-maven-plugin</artifactId> |
182 | 182 | <version>0.8.6</version> |
183 | 183 | <configuration> |
| 184 | + <propertyName>jacoco.java.option</propertyName> |
184 | 185 | <excludes> |
185 | 186 | <exclude>org/reaktivity/ry/internal/RyMain.class</exclude> |
186 | 187 | </excludes> |
|
211 | 212 | </execution> |
212 | 213 | </executions> |
213 | 214 | </plugin> |
| 215 | + <plugin> |
| 216 | + <groupId>org.moditect</groupId> |
| 217 | + <artifactId>moditect-maven-plugin</artifactId> |
| 218 | + <version>1.0.0.RC1</version> |
| 219 | + <configuration> |
| 220 | + <module> |
| 221 | + <moduleInfoFile>src/main/moditect/module-info.java</moduleInfoFile> |
| 222 | + </module> |
| 223 | + </configuration> |
| 224 | + <executions> |
| 225 | + <execution> |
| 226 | + <phase>package</phase> |
| 227 | + <goals> |
| 228 | + <goal>add-module-info</goal> |
| 229 | + </goals> |
| 230 | + </execution> |
| 231 | + </executions> |
| 232 | + </plugin> |
214 | 233 | <plugin> |
215 | 234 | <groupId>org.apache.maven.plugins</groupId> |
216 | 235 | <artifactId>maven-surefire-plugin</artifactId> |
217 | | - <version>3.0.0-M2</version> |
| 236 | + <version>3.0.0-M5</version> |
218 | 237 | <configuration> |
219 | | - <useModulePath>false</useModulePath> |
220 | | - <argLine>@{argLine}</argLine> |
221 | | - <excludes> |
222 | | - <exclude/> |
223 | | - </excludes> |
| 238 | + <argLine>@{jacoco.java.option}</argLine> |
224 | 239 | </configuration> |
225 | 240 | </plugin> |
226 | 241 | <plugin> |
227 | 242 | <groupId>org.apache.maven.plugins</groupId> |
228 | 243 | <artifactId>maven-failsafe-plugin</artifactId> |
229 | | - <version>2.22.1</version> |
| 244 | + <version>3.0.0-M4</version> |
230 | 245 | <configuration> |
231 | | - <argLine>@{argLine}</argLine> |
| 246 | + <argLine>@{jacoco.java.option}</argLine> |
232 | 247 | </configuration> |
233 | 248 | </plugin> |
234 | 249 | <plugin> |
|
266 | 281 | <ignore></ignore> |
267 | 282 | </action> |
268 | 283 | </pluginExecution> |
| 284 | + <pluginExecution> |
| 285 | + <pluginExecutionFilter> |
| 286 | + <groupId>org.moditect</groupId> |
| 287 | + <artifactId>moditect-maven-plugin</artifactId> |
| 288 | + <versionRange>[1.0.0.RC1,)</versionRange> |
| 289 | + <goals> |
| 290 | + <goal>add-module-info</goal> |
| 291 | + </goals> |
| 292 | + </pluginExecutionFilter> |
| 293 | + <action> |
| 294 | + <ignore></ignore> |
| 295 | + </action> |
| 296 | + </pluginExecution> |
269 | 297 | </pluginExecutions> |
270 | 298 | </lifecycleMappingMetadata> |
271 | 299 | </configuration> |
|
0 commit comments