|
15 | 15 | <assertj.core.version>3.27.6</assertj.core.version> |
16 | 16 | <mockito.version>5.20.0</mockito.version> |
17 | 17 | <javafx.version>25</javafx.version> |
18 | | - <surefire.version>3.2.5</surefire.version> |
19 | 18 | </properties> |
20 | 19 | <dependencies> |
21 | | - <dependency> |
22 | | - <groupId>org.junit.jupiter</groupId> |
23 | | - <artifactId>junit-jupiter</artifactId> |
24 | | - <version>${junit.jupiter.version}</version> |
25 | | - <scope>test</scope> |
26 | | - </dependency> |
27 | | - <dependency> |
28 | | - <groupId>org.assertj</groupId> |
29 | | - <artifactId>assertj-core</artifactId> |
30 | | - <version>${assertj.core.version}</version> |
31 | | - <scope>test</scope> |
32 | | - </dependency> |
33 | | - <dependency> |
34 | | - <groupId>org.mockito</groupId> |
35 | | - <artifactId>mockito-junit-jupiter</artifactId> |
36 | | - <version>${mockito.version}</version> |
37 | | - <scope>test</scope> |
38 | | - </dependency> |
39 | 20 | <dependency> |
40 | 21 | <groupId>org.openjfx</groupId> |
41 | 22 | <artifactId>javafx-controls</artifactId> |
|
56 | 37 | <artifactId>jackson-databind</artifactId> |
57 | 38 | <version>3.0.1</version> |
58 | 39 | </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>org.junit.jupiter</groupId> |
| 43 | + <artifactId>junit-jupiter</artifactId> |
| 44 | + <version>${junit.jupiter.version}</version> |
| 45 | + <scope>test</scope> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>org.assertj</groupId> |
| 49 | + <artifactId>assertj-core</artifactId> |
| 50 | + <version>${assertj.core.version}</version> |
| 51 | + <scope>test</scope> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.mockito</groupId> |
| 55 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 56 | + <version>${mockito.version}</version> |
| 57 | + <scope>test</scope> |
| 58 | + </dependency> |
59 | 59 | <dependency> |
60 | 60 | <groupId>org.wiremock</groupId> |
61 | 61 | <artifactId>wiremock</artifactId> |
62 | 62 | <version>4.0.0-beta.15</version> |
63 | 63 | <scope>test</scope> |
64 | 64 | </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>org.awaitility</groupId> |
| 67 | + <artifactId>awaitility</artifactId> |
| 68 | + <version>4.3.0</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
65 | 71 | <dependency> |
66 | 72 | <groupId>org.testfx</groupId> |
67 | | - <artifactId>testfx-core</artifactId> |
| 73 | + <artifactId>testfx-junit5</artifactId> |
68 | 74 | <version>4.0.16-alpha</version> |
69 | 75 | <scope>test</scope> |
70 | 76 | </dependency> |
|
74 | 80 | <version>2.0.12</version> |
75 | 81 | <scope>test</scope> |
76 | 82 | </dependency> |
77 | | - <dependency> |
78 | | - <groupId>org.awaitility</groupId> |
79 | | - <artifactId>awaitility</artifactId> |
80 | | - <version>4.3.0</version> |
81 | | - <scope>test</scope> |
82 | | - </dependency> |
83 | 83 | </dependencies> |
84 | 84 | <build> |
85 | 85 | <plugins> |
86 | | - <plugin> |
87 | | - <groupId>org.apache.maven.plugins</groupId> |
88 | | - <artifactId>maven-surefire-plugin</artifactId> |
89 | | - <version>${surefire.version}</version> |
90 | | - <configuration> |
91 | | - <argLine> |
92 | | - --add-exports javafx.graphics/com.sun.glass.ui=ALL-UNNAMED |
93 | | - --add-exports javafx.base/com.sun.javafx.runtime=ALL-UNNAMED |
94 | | - -Djava.awt.headless=true |
95 | | - -Dprism.order=sw |
96 | | - -Dtestfx.robot=glass |
97 | | - -Dtestfx.headless=true |
98 | | - </argLine> |
99 | | - </configuration> |
100 | | - </plugin> |
101 | 86 | <plugin> |
102 | 87 | <groupId>org.openjfx</groupId> |
103 | 88 | <artifactId>javafx-maven-plugin</artifactId> |
|
0 commit comments