|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 |
|
| 6 | + <parent> |
| 7 | + <groupId>com.dlsc</groupId> |
| 8 | + <artifactId>dlsc-maven-parent</artifactId> |
| 9 | + <version>1.2.0</version> |
| 10 | + </parent> |
| 11 | + |
6 | 12 | <groupId>com.dlsc.jfxcentral</groupId> |
7 | 13 | <artifactId>model</artifactId> |
8 | 14 | <version>1.0-SNAPSHOT</version> |
|
15 | 21 |
|
16 | 22 | <!-- We stay on 11 in this project so that the TestFX stuff and Monocle work correctly. --> |
17 | 23 | <javafx.version>11.0.2</javafx.version> |
| 24 | + <enforcer.skip>true</enforcer.skip> |
18 | 25 | </properties> |
19 | 26 |
|
| 27 | + <dependencyManagement> |
| 28 | + <dependencies> |
| 29 | + |
| 30 | + <dependency> |
| 31 | + <groupId>org.openjfx</groupId> |
| 32 | + <artifactId>javafx-graphics</artifactId> |
| 33 | + <version>${javafx.version}</version> |
| 34 | + </dependency> |
| 35 | + |
| 36 | + <dependency> |
| 37 | + <groupId>org.openjfx</groupId> |
| 38 | + <artifactId>javafx-swing</artifactId> |
| 39 | + <version>${javafx.version}</version> |
| 40 | + </dependency> |
| 41 | + |
| 42 | + <dependency> |
| 43 | + <groupId>org.openjfx</groupId> |
| 44 | + <artifactId>javafx-controls</artifactId> |
| 45 | + <version>${javafx.version}</version> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <dependency> |
| 49 | + <groupId>org.openjfx</groupId> |
| 50 | + <artifactId>javafx-swing</artifactId> |
| 51 | + <version>${javafx.version}</version> |
| 52 | + </dependency> |
| 53 | + |
| 54 | + <dependency> |
| 55 | + <groupId>com.rometools</groupId> |
| 56 | + <artifactId>rome</artifactId> |
| 57 | + <version>1.15.0</version> |
| 58 | + </dependency> |
| 59 | + |
| 60 | + <dependency> |
| 61 | + <groupId>org.apache.commons</groupId> |
| 62 | + <artifactId>commons-lang3</artifactId> |
| 63 | + <version>3.12.0</version> |
| 64 | + </dependency> |
| 65 | + |
| 66 | + <dependency> |
| 67 | + <groupId>com.google.code.gson</groupId> |
| 68 | + <artifactId>gson</artifactId> |
| 69 | + <version>2.9.0</version> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <dependency> |
| 73 | + <groupId>com.fatboyindustrial.gson-javatime-serialisers</groupId> |
| 74 | + <artifactId>gson-javatime-serialisers</artifactId> |
| 75 | + <version>1.1.1</version> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>org.junit.jupiter</groupId> |
| 80 | + <artifactId>junit-jupiter-api</artifactId> |
| 81 | + <version>5.7.0</version> |
| 82 | + <scope>test</scope> |
| 83 | + </dependency> |
| 84 | + |
| 85 | + <dependency> |
| 86 | + <groupId>org.junit.jupiter</groupId> |
| 87 | + <artifactId>junit-jupiter-engine</artifactId> |
| 88 | + <version>5.7.0</version> |
| 89 | + </dependency> |
| 90 | + |
| 91 | + <dependency> |
| 92 | + <groupId>org.testfx</groupId> |
| 93 | + <artifactId>testfx-core</artifactId> |
| 94 | + <version>4.0.16-alpha</version> |
| 95 | + </dependency> |
| 96 | + |
| 97 | + <dependency> |
| 98 | + <groupId>org.testfx</groupId> |
| 99 | + <artifactId>testfx-junit5</artifactId> |
| 100 | + <version>4.0.16-alpha</version> |
| 101 | + </dependency> |
| 102 | + |
| 103 | + <dependency> |
| 104 | + <groupId>org.testfx</groupId> |
| 105 | + <artifactId>openjfx-monocle</artifactId> |
| 106 | + <version>jdk-11+26</version> |
| 107 | + </dependency> |
| 108 | + </dependencies> |
| 109 | + </dependencyManagement> |
| 110 | + |
20 | 111 | <dependencies> |
21 | 112 |
|
22 | 113 | <dependency> |
23 | 114 | <groupId>org.openjfx</groupId> |
24 | 115 | <artifactId>javafx-graphics</artifactId> |
25 | | - <version>${javafx.version}</version> |
26 | 116 | </dependency> |
27 | 117 |
|
28 | 118 | <dependency> |
29 | 119 | <groupId>org.openjfx</groupId> |
30 | 120 | <artifactId>javafx-swing</artifactId> |
31 | | - <version>${javafx.version}</version> |
32 | 121 | </dependency> |
33 | 122 |
|
34 | 123 | <dependency> |
35 | 124 | <groupId>com.rometools</groupId> |
36 | 125 | <artifactId>rome</artifactId> |
37 | | - <version>1.15.0</version> |
38 | 126 | </dependency> |
39 | 127 |
|
40 | 128 | <dependency> |
41 | 129 | <groupId>org.apache.commons</groupId> |
42 | 130 | <artifactId>commons-lang3</artifactId> |
43 | | - <version>3.12.0</version> |
44 | 131 | </dependency> |
45 | 132 |
|
46 | 133 | <dependency> |
47 | 134 | <groupId>com.google.code.gson</groupId> |
48 | 135 | <artifactId>gson</artifactId> |
49 | | - <version>2.9.0</version> |
50 | 136 | </dependency> |
51 | 137 |
|
52 | 138 | <dependency> |
53 | 139 | <groupId>com.fatboyindustrial.gson-javatime-serialisers</groupId> |
54 | 140 | <artifactId>gson-javatime-serialisers</artifactId> |
55 | | - <version>1.1.1</version> |
56 | 141 | </dependency> |
57 | 142 |
|
58 | 143 | <dependency> |
59 | 144 | <groupId>org.junit.jupiter</groupId> |
60 | 145 | <artifactId>junit-jupiter-api</artifactId> |
61 | | - <version>5.7.0</version> |
62 | 146 | <scope>test</scope> |
63 | 147 | </dependency> |
64 | 148 |
|
65 | 149 | <dependency> |
66 | 150 | <groupId>org.junit.jupiter</groupId> |
67 | 151 | <artifactId>junit-jupiter-engine</artifactId> |
68 | | - <version>5.7.0</version> |
69 | 152 | <scope>test</scope> |
70 | 153 | </dependency> |
71 | 154 |
|
72 | 155 | <dependency> |
73 | 156 | <groupId>org.testfx</groupId> |
74 | 157 | <artifactId>testfx-core</artifactId> |
75 | | - <version>4.0.16-alpha</version> |
76 | 158 | <scope>test</scope> |
77 | 159 | </dependency> |
78 | 160 |
|
79 | 161 | <dependency> |
80 | 162 | <groupId>org.testfx</groupId> |
81 | 163 | <artifactId>testfx-junit5</artifactId> |
82 | | - <version>4.0.16-alpha</version> |
83 | 164 | <scope>test</scope> |
84 | 165 | </dependency> |
85 | 166 |
|
86 | 167 | <dependency> |
87 | 168 | <groupId>org.testfx</groupId> |
88 | 169 | <artifactId>openjfx-monocle</artifactId> |
89 | | - <version>jdk-11+26</version> |
90 | 170 | <scope>test</scope> |
91 | 171 | </dependency> |
92 | 172 |
|
|
0 commit comments