|
6 | 6 | <parent> |
7 | 7 | <groupId>org.springframework.boot</groupId> |
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
9 | | - <version>3.1.3</version> |
| 9 | + <version>3.1.10</version> |
10 | 10 | <relativePath /> |
11 | 11 | <!-- lookup parent from repository --> |
12 | 12 | </parent> |
13 | 13 | <groupId>de.doubleslash</groupId> |
14 | 14 | <artifactId>keeptime</artifactId> |
15 | | - <version>2.0.0-SNAPSHOT</version> |
| 15 | + <version>${project.version}</version> |
16 | 16 |
|
17 | 17 | <packaging>jar</packaging> |
18 | 18 | <name>KeepTime</name> |
|
33 | 33 | </licenses> |
34 | 34 |
|
35 | 35 | <properties> |
| 36 | + <project.version>2.0.0-SNAPSHOT</project.version> |
36 | 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
37 | 38 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
38 | 39 | <java.version>17</java.version> |
39 | | - <javafx.version>20.0.1</javafx.version> |
| 40 | + <javafx.version>22</javafx.version> |
40 | 41 |
|
41 | | - <maven-dependency-check.version>8.0.2</maven-dependency-check.version> |
| 42 | + <maven-dependency-check.version>9.1.0</maven-dependency-check.version> |
42 | 43 | <!-- USING HTML,XML (comma-separated list) did not work with plugin version 5.1.0 --> |
43 | 44 | <maven-dependency-check.format>ALL</maven-dependency-check.format> |
44 | 45 | <maven-dependency-check.failOnError>true</maven-dependency-check.failOnError> |
|
108 | 109 | <groupId>org.springframework.boot</groupId> |
109 | 110 | <artifactId>spring-boot-starter-validation</artifactId> |
110 | 111 | </dependency> |
111 | | - |
| 112 | + <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security --> |
| 113 | + <dependency> |
| 114 | + <groupId>org.springframework.boot</groupId> |
| 115 | + <artifactId>spring-boot-starter-security</artifactId> |
| 116 | + <version>3.1.3</version> |
| 117 | + </dependency> |
112 | 118 |
|
113 | 119 |
|
114 | 120 | <dependency> |
|
143 | 149 | <dependency> |
144 | 150 | <groupId>org.apache.maven.plugins</groupId> |
145 | 151 | <artifactId>maven-assembly-plugin</artifactId> |
146 | | - <version>3.4.2</version> |
| 152 | + <version>3.7.1</version> |
147 | 153 | <type>maven-plugin</type> |
148 | 154 | </dependency> |
149 | 155 | <dependency> |
150 | 156 | <groupId>org.sonarsource.scanner.maven</groupId> |
151 | 157 | <artifactId>sonar-maven-plugin</artifactId> |
152 | | - <version>3.9.1.2184</version> |
| 158 | + <version>3.11.0.3922</version> |
153 | 159 | </dependency> |
154 | 160 | <dependency> |
155 | 161 | <groupId>org.hamcrest</groupId> |
156 | 162 | <artifactId>hamcrest-library</artifactId> |
157 | 163 | <scope>test</scope> |
158 | 164 | </dependency> |
159 | | - <dependency> |
160 | | - <groupId>org.testfx</groupId> |
161 | | - <artifactId>testfx-junit5</artifactId> |
162 | | - <version>4.0.16-alpha</version> |
163 | | - <scope>test</scope> |
164 | | - </dependency> |
165 | | - <!-- https://mvnrepository.com/artifact/org.testfx/openjfx-monocle --> |
166 | | - <dependency> |
167 | | - <groupId>org.testfx</groupId> |
168 | | - <artifactId>openjfx-monocle</artifactId> |
169 | | - <version>jdk-12.0.1+2</version> |
170 | | - <scope>test</scope> |
171 | | - </dependency> |
172 | | - <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security --> |
173 | | - <dependency> |
174 | | - <groupId>org.springframework.boot</groupId> |
175 | | - <artifactId>spring-boot-starter-security</artifactId> |
176 | | - <version>3.1.3</version> |
177 | | - </dependency> |
178 | | - |
179 | 165 | </dependencies> |
180 | 166 | <build> |
| 167 | + <finalName>keeptime-${project.version}</finalName> |
| 168 | + |
181 | 169 | <plugins> |
182 | 170 | <plugin> |
183 | 171 | <groupId>org.springframework.boot</groupId> |
184 | 172 | <artifactId>spring-boot-maven-plugin</artifactId> |
185 | 173 | </plugin> |
186 | 174 |
|
187 | 175 | <plugin> |
188 | | - <groupId>pl.project13.maven</groupId> |
189 | | - <artifactId>git-commit-id-plugin</artifactId> |
| 176 | + <groupId>io.github.git-commit-id</groupId> |
| 177 | + <artifactId>git-commit-id-maven-plugin</artifactId> |
190 | 178 | <configuration> |
191 | 179 | <generateGitPropertiesFile>false</generateGitPropertiesFile> |
192 | 180 | </configuration> |
|
205 | 193 | <descriptors> |
206 | 194 | <descriptor>./assembly.xml</descriptor> |
207 | 195 | </descriptors> |
208 | | - <finalName>keeptime-${project.version}</finalName> |
209 | 196 | </configuration> |
210 | 197 | </execution> |
211 | 198 | </executions> |
|
0 commit comments