|
5 | 5 |
|
6 | 6 | <groupId>de.doubleslash</groupId> |
7 | 7 | <artifactId>keeptime</artifactId> |
8 | | - <version>${project.version}</version> |
| 8 | + <version>2.0.0-SNAPSHOT</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 |
|
11 | 11 | <name>KeepTime</name> |
|
27 | 27 | <parent> |
28 | 28 | <groupId>org.springframework.boot</groupId> |
29 | 29 | <artifactId>spring-boot-starter-parent</artifactId> |
30 | | - <version>2.7.5</version> |
| 30 | + <version>3.0.6</version> |
31 | 31 | <relativePath /> <!-- lookup parent from repository --> |
32 | 32 | </parent> |
33 | 33 |
|
34 | 34 | <properties> |
35 | | - <project.version>1.3.0-SNAPSHOT</project.version> |
36 | 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
37 | 36 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
38 | | - <maven.compiler.source>17</maven.compiler.source> |
39 | | - <maven.compiler.target>17</maven.compiler.target> |
| 37 | + <java.version>17</java.version> |
| 38 | + <javafx.version>20.0.1</javafx.version> |
40 | 39 |
|
41 | 40 | <maven-dependency-check.version>8.0.2</maven-dependency-check.version> |
42 | 41 | <!-- USING HTML,XML (comma-separated list) did not work with plugin version 5.1.0 --> |
|
50 | 49 | <dependency> |
51 | 50 | <groupId>org.openjfx</groupId> |
52 | 51 | <artifactId>javafx-controls</artifactId> |
53 | | - <version>17.0.2</version> |
| 52 | + <version>${javafx.version}</version> |
54 | 53 | </dependency> |
55 | 54 | <dependency> |
56 | 55 | <groupId>org.openjfx</groupId> |
57 | 56 | <artifactId>javafx-fxml</artifactId> |
58 | | - <version>17.0.2</version> |
| 57 | + <version>${javafx.version}</version> |
59 | 58 | </dependency> |
60 | 59 | <dependency> |
61 | 60 | <groupId>org.openjfx</groupId> |
62 | 61 | <artifactId>javafx-swing</artifactId> |
63 | | - <version>17.0.2</version> |
| 62 | + <version>${javafx.version}</version> |
64 | 63 | </dependency> |
65 | 64 | <dependency> |
66 | 65 | <groupId>org.openjfx</groupId> |
67 | 66 | <artifactId>javafx-graphics</artifactId> |
68 | | - <version>17.0.2</version> |
| 67 | + <version>${javafx.version}</version> |
69 | 68 | <classifier>win</classifier> |
70 | 69 | </dependency> |
71 | 70 | <dependency> |
72 | 71 | <groupId>org.openjfx</groupId> |
73 | 72 | <artifactId>javafx-graphics</artifactId> |
74 | | - <version>17.0.2</version> |
| 73 | + <version>${javafx.version}</version> |
75 | 74 | <classifier>linux</classifier> |
76 | 75 | </dependency> |
77 | 76 | <dependency> |
78 | 77 | <groupId>org.openjfx</groupId> |
79 | 78 | <artifactId>javafx-graphics</artifactId> |
80 | | - <version>17.0.2</version> |
| 79 | + <version>${javafx.version}</version> |
81 | 80 | <classifier>mac-aarch64</classifier> |
82 | 81 | </dependency> |
83 | 82 | <dependency> |
84 | 83 | <groupId>org.springframework.boot</groupId> |
85 | 84 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
86 | 85 | </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>org.glassfish.jaxb</groupId> |
| 88 | + <artifactId>jaxb-runtime</artifactId> |
| 89 | + <scope>provided</scope> |
| 90 | + </dependency> |
87 | 91 |
|
88 | 92 | <dependency> |
89 | 93 | <groupId>com.h2database</groupId> |
|
122 | 126 | <dependency> |
123 | 127 | <groupId>org.hamcrest</groupId> |
124 | 128 | <artifactId>hamcrest-library</artifactId> |
125 | | - <version>2.2</version> |
| 129 | + <scope>test</scope> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>org.testfx</groupId> |
| 133 | + <artifactId>testfx-junit5</artifactId> |
| 134 | + <version>4.0.16-alpha</version> |
126 | 135 | <scope>test</scope> |
127 | 136 | </dependency> |
128 | 137 | </dependencies> |
|
0 commit comments