|
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | 7 | <groupId>com.github.hanseter</groupId> |
8 | 8 | <artifactId>json-properties-fx</artifactId> |
9 | | - <version>1.0.15</version> |
| 9 | + <version>2.0.0</version> |
10 | 10 |
|
11 | 11 | <packaging>bundle</packaging> |
12 | 12 | <name>JSON Properties Editor Fx</name> |
13 | 13 |
|
14 | 14 | <properties> |
15 | | - <maven.compiler.source>17</maven.compiler.source> |
16 | | - <maven.compiler.target>17</maven.compiler.target> |
17 | | - <kotlin.compiler.jvmTarget>17</kotlin.compiler.jvmTarget> |
| 15 | + <maven.compiler.source>21</maven.compiler.source> |
| 16 | + <maven.compiler.target>21</maven.compiler.target> |
| 17 | + <kotlin.compiler.jvmTarget>21</kotlin.compiler.jvmTarget> |
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
19 | | - <kotlin.version>1.8.20</kotlin.version> |
20 | | - <javafx.version>17.0.2</javafx.version> |
| 19 | + <kotlin.version>2.0.10</kotlin.version> |
| 20 | + <javafx.version>21.0.2</javafx.version> |
21 | 21 | <slf4j.version>1.7.32</slf4j.version> |
22 | 22 | </properties> |
23 | 23 |
|
|
154 | 154 | <dependency> |
155 | 155 | <groupId>org.testfx</groupId> |
156 | 156 | <artifactId>testfx-core</artifactId> |
157 | | - <version>4.0.16-alpha</version> |
| 157 | + <version>4.0.18</version> |
158 | 158 | <scope>test</scope> |
159 | 159 | </dependency> |
160 | 160 | <dependency> |
161 | 161 | <groupId>org.testfx</groupId> |
162 | 162 | <artifactId>testfx-junit5</artifactId> |
163 | | - <version>4.0.16-alpha</version> |
| 163 | + <version>4.0.18</version> |
164 | 164 | <scope>test</scope> |
165 | 165 | </dependency> |
166 | 166 | <dependency> |
|
169 | 169 | <version>${slf4j.version}</version> |
170 | 170 | <scope>test</scope> |
171 | 171 | </dependency> |
| 172 | + <dependency> |
| 173 | + <groupId>org.testfx</groupId> |
| 174 | + <artifactId>openjfx-monocle</artifactId> |
| 175 | + <version>21.0.2</version> |
| 176 | + <scope>test</scope> |
| 177 | + </dependency> |
172 | 178 | </dependencies> |
173 | 179 |
|
174 | | - <profiles> |
175 | | - <profile> |
176 | | - <id>linux-x86_64-monocle</id> |
177 | | - <activation> |
178 | | - <os> |
179 | | - <name>linux</name> |
180 | | - <arch>amd64</arch> |
181 | | - </os> |
182 | | - <property> |
183 | | - <name>javafx.monocle</name> |
184 | | - <value>true</value> |
185 | | - </property> |
186 | | - </activation> |
187 | | - <properties> |
188 | | - <javafx.platform>linux-monocle</javafx.platform> |
189 | | - </properties> |
190 | | - </profile> |
191 | | - <profile> |
192 | | - <id>windows-x86_64-monocle</id> |
193 | | - <activation> |
194 | | - <os> |
195 | | - <family>windows</family> |
196 | | - <arch>amd64</arch> |
197 | | - </os> |
198 | | - <property> |
199 | | - <name>javafx.monocle</name> |
200 | | - <value>true</value> |
201 | | - </property> |
202 | | - </activation> |
203 | | - <properties> |
204 | | - <javafx.platform>win-monocle</javafx.platform> |
205 | | - </properties> |
206 | | - </profile> |
207 | | - </profiles> |
208 | 180 | </project> |
0 commit comments