|
40 | 40 | --add-opens org.htmlunit/org.htmlunit.util.quercus.servlet=ALL-UNNAMED |
41 | 41 | </surefire.argLine.modules> |
42 | 42 |
|
43 | | - <htmlunitcsp.version>5.0.0-SNAPSHOT</htmlunitcsp.version> |
44 | | - <htmlunitcssparser.version>5.0.0-SNAPSHOT</htmlunitcssparser.version> |
45 | | - <htmlunitcorejs.version>5.0.0-SNAPSHOT</htmlunitcorejs.version> |
46 | | - <htmlunitneko.version>5.0.0-SNAPSHOT</htmlunitneko.version> |
47 | | - <htmlunitwebsocketclient.version>4.21.0</htmlunitwebsocketclient.version> |
48 | | - <htmlunitxpath.version>5.0.0-SNAPSHOT</htmlunitxpath.version> |
| 43 | + <htmlunit-csp.version>5.0.0-SNAPSHOT</htmlunit-csp.version> |
| 44 | + <htmlunit-cssparser.version>5.0.0-SNAPSHOT</htmlunit-cssparser.version> |
| 45 | + <htmlunit-corejs.version>5.0.0-SNAPSHOT</htmlunit-corejs.version> |
| 46 | + <htmlunit-neko.version>5.0.0-SNAPSHOT</htmlunit-neko.version> |
| 47 | + <htmlunit-websocketclient.version>4.21.0</htmlunit-websocketclient.version> |
| 48 | + <htmlunit-xpath.version>5.0.0-SNAPSHOT</htmlunit-xpath.version> |
49 | 49 |
|
50 | 50 | <httpcomponents.version>4.5.14</httpcomponents.version> |
51 | 51 | <commons-lang3.version>3.20.0</commons-lang3.version> |
|
81 | 81 |
|
82 | 82 | <!-- plugins --> |
83 | 83 | <central-publishing-plugin.version>0.9.0</central-publishing-plugin.version> |
| 84 | + <build-helper-plugin.version>3.6.1</build-helper-plugin.version> |
84 | 85 | <checkstyle-plugin.version>3.6.0</checkstyle-plugin.version> |
85 | 86 | <pmd-plugin.version>3.28.0</pmd-plugin.version> |
86 | 87 | <spotbugs-plugin.version>4.9.8.2</spotbugs-plugin.version> |
|
100 | 101 |
|
101 | 102 | <build> |
102 | 103 | <plugins> |
| 104 | + <plugin> |
| 105 | + <groupId>org.codehaus.mojo</groupId> |
| 106 | + <artifactId>build-helper-maven-plugin</artifactId> |
| 107 | + <version>${build-helper-plugin.version}</version> |
| 108 | + <executions> |
| 109 | + <execution> |
| 110 | + <id>add-module-source</id> |
| 111 | + <phase>generate-sources</phase> |
| 112 | + <goals> |
| 113 | + <goal>add-source</goal> |
| 114 | + </goals> |
| 115 | + <configuration> |
| 116 | + <sources> |
| 117 | + <source>src/main/module-info</source> |
| 118 | + </sources> |
| 119 | + </configuration> |
| 120 | + </execution> |
| 121 | + </executions> |
| 122 | + </plugin> |
| 123 | + |
103 | 124 | <plugin> |
104 | 125 | <groupId>org.apache.maven.plugins</groupId> |
105 | 126 | <artifactId>maven-compiler-plugin</artifactId> |
|
1364 | 1385 | <dependency> |
1365 | 1386 | <groupId>org.htmlunit</groupId> |
1366 | 1387 | <artifactId>htmlunit-core-js</artifactId> |
1367 | | - <version>${htmlunitcorejs.version}</version> |
| 1388 | + <version>${htmlunit-corejs.version}</version> |
1368 | 1389 | </dependency> |
1369 | 1390 | <dependency> |
1370 | 1391 | <groupId>org.htmlunit</groupId> |
1371 | 1392 | <artifactId>neko-htmlunit</artifactId> |
1372 | | - <version>${htmlunitneko.version}</version> |
| 1393 | + <version>${htmlunit-neko.version}</version> |
1373 | 1394 | </dependency> |
1374 | 1395 | <dependency> |
1375 | 1396 | <groupId>org.htmlunit</groupId> |
1376 | 1397 | <artifactId>htmlunit-cssparser</artifactId> |
1377 | | - <version>${htmlunitcssparser.version}</version> |
| 1398 | + <version>${htmlunit-cssparser.version}</version> |
1378 | 1399 | </dependency> |
1379 | 1400 | <dependency> |
1380 | 1401 | <groupId>org.htmlunit</groupId> |
1381 | 1402 | <artifactId>htmlunit-xpath</artifactId> |
1382 | | - <version>${htmlunitxpath.version}</version> |
| 1403 | + <version>${htmlunit-xpath.version}</version> |
1383 | 1404 | </dependency> |
1384 | 1405 | <dependency> |
1385 | 1406 | <groupId>org.htmlunit</groupId> |
1386 | 1407 | <artifactId>htmlunit-csp</artifactId> |
1387 | | - <version>${htmlunitcsp.version}</version> |
| 1408 | + <version>${htmlunit-csp.version}</version> |
1388 | 1409 | </dependency> |
1389 | 1410 | <dependency> |
1390 | 1411 | <groupId>org.htmlunit</groupId> |
1391 | 1412 | <artifactId>htmlunit-websocket-client</artifactId> |
1392 | | - <version>${htmlunitwebsocketclient.version}</version> |
| 1413 | + <version>${htmlunit-websocketclient.version}</version> |
1393 | 1414 | </dependency> |
1394 | 1415 |
|
1395 | 1416 | <dependency> |
|
0 commit comments