|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>org.htmlunit</groupId> |
6 | 6 | <artifactId>htmlunit-core-js</artifactId> |
7 | | - <version>4.11.0</version> |
| 7 | + <version>4.12.0-SNAPSHOT</version> |
8 | 8 | <name>HtmlUnit JavaScript Engine</name> |
9 | 9 | <organization> |
10 | 10 | <name>HtmlUnit</name> |
|
20 | 20 | <maven.compiler.source>8</maven.compiler.source> |
21 | 21 | <maven.compiler.target>8</maven.compiler.target> |
22 | 22 |
|
| 23 | + <!-- test dependencies --> |
| 24 | + <junit.version>5.12.2</junit.version> |
| 25 | + |
| 26 | + <!-- quality --> |
23 | 27 | <dependencycheck.version>10.0.4</dependencycheck.version> |
24 | 28 | </properties> |
| 29 | + |
25 | 30 | <build> |
26 | 31 | <resources> |
27 | 32 | <resource> |
|
35 | 40 | <version>3.6.0</version> |
36 | 41 | <executions> |
37 | 42 | <execution> |
| 43 | + <id>generate-rhino-sources</id> |
38 | 44 | <phase>generate-sources</phase> |
39 | 45 | <goals> |
40 | 46 | <goal>add-source</goal> |
41 | 47 | </goals> |
42 | 48 | <configuration> |
43 | 49 | <sources> |
44 | 50 | <source>src/repackaged-rhino/java</source> |
| 51 | + </sources> |
| 52 | + </configuration> |
| 53 | + </execution> |
| 54 | + <execution> |
| 55 | + <id>generate-rhino-test-sources</id> |
| 56 | + <phase>generate-test-sources</phase> |
| 57 | + <goals> |
| 58 | + <goal>add-test-source</goal> |
| 59 | + </goals> |
| 60 | + <configuration> |
| 61 | + <sources> |
45 | 62 | <source>src/repackaged-rhino-test/java</source> |
46 | 63 | </sources> |
47 | 64 | </configuration> |
|
544 | 561 | <dependency> |
545 | 562 | <groupId>org.junit.jupiter</groupId> |
546 | 563 | <artifactId>junit-jupiter-engine</artifactId> |
547 | | - <version>5.12.0</version> |
| 564 | + <version>${junit.version}</version> |
548 | 565 | <scope>test</scope> |
549 | 566 | </dependency> |
550 | 567 | <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API --> |
551 | 568 | <dependency> |
552 | 569 | <groupId>org.junit.vintage</groupId> |
553 | 570 | <artifactId>junit-vintage-engine</artifactId> |
554 | | - <version>5.12.0</version> |
| 571 | + <version>${junit.version}</version> |
| 572 | + <scope>test</scope> |
| 573 | + </dependency> |
| 574 | + <dependency> |
| 575 | + <groupId>org.junit.platform</groupId> |
| 576 | + <artifactId>junit-platform-launcher</artifactId> |
| 577 | + <version>1.12.2</version> |
555 | 578 | <scope>test</scope> |
556 | 579 | </dependency> |
557 | 580 | </dependencies> |
|
0 commit comments