|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.cryptomator</groupId> |
7 | 7 | <artifactId>integrations-win</artifactId> |
8 | | - <version>1.5.0</version> |
| 8 | + <version>1.5.1</version> |
9 | 9 |
|
10 | 10 | <name>Cryptomator Integrations for Windows</name> |
11 | 11 | <description>Provides optional Windows services used by Cryptomator</description> |
|
37 | 37 | <project.jdk.version>24</project.jdk.version> |
38 | 38 |
|
39 | 39 | <!-- runtime dependencies --> |
40 | | - <api.version>1.6.0</api.version> |
| 40 | + <api.version>1.7.0</api.version> |
41 | 41 | <slf4j.version>2.0.17</slf4j.version> |
42 | | - <jackson.version>2.19.0</jackson.version> |
| 42 | + <jackson.version>2.20.0</jackson.version> |
| 43 | + <jackson-annotations.version>2.20</jackson-annotations.version> |
43 | 44 |
|
44 | 45 | <!-- test dependencies --> |
45 | | - <junit.jupiter.version>5.12.2</junit.jupiter.version> |
46 | | - <mockito.version>5.17.0</mockito.version> |
| 46 | + <junit.jupiter.version>5.13.4</junit.jupiter.version> |
| 47 | + <mockito.version>5.19.0</mockito.version> |
47 | 48 |
|
48 | 49 | <!-- build plugin dependencies --> |
49 | | - <mvn-surefire.version>3.5.3</mvn-surefire.version> |
50 | | - <mvn-failsafe.version>3.5.3</mvn-failsafe.version> |
51 | | - <dependency-check.version>12.1.1</dependency-check.version> |
52 | | - <central-publishing.version>0.7.0</central-publishing.version> |
| 50 | + <mvn-clean.version>3.5.0</mvn-clean.version> |
| 51 | + <mvn-compiler.version>3.14.0</mvn-compiler.version> |
| 52 | + <mvn-dependency.version>3.8.1</mvn-dependency.version> |
| 53 | + <mvn-deploy.version>3.1.4</mvn-deploy.version> |
| 54 | + <mvn-enforcer.version>3.6.1</mvn-enforcer.version> |
| 55 | + <mvn-failsafe.version>3.5.4</mvn-failsafe.version> |
| 56 | + <mvn-javadoc.version>3.11.3</mvn-javadoc.version> |
| 57 | + <mvn-gpg.version>3.2.8</mvn-gpg.version> |
| 58 | + <mvn-resources.version>3.3.1</mvn-resources.version> |
| 59 | + <mvn-source.version>3.3.1</mvn-source.version> |
| 60 | + <mvn-surefire.version>3.5.4</mvn-surefire.version> |
| 61 | + <exec-maven.version>3.5.1</exec-maven.version> |
| 62 | + <dependency-check.version>12.1.3</dependency-check.version> |
| 63 | + <central-publishing.version>0.8.0</central-publishing.version> |
53 | 64 | <jextract-maven.version>0.4.3</jextract-maven.version> |
| 65 | + <junit-tree-reporter.version>1.4.0</junit-tree-reporter.version> |
54 | 66 |
|
55 | 67 | <!-- jextract props --> |
56 | 68 | <win.umHeaderPath>C:\Program Files (x86)\Windows Kits\10\Include\10.0.22621.0\um</win.umHeaderPath> |
|
84 | 96 | <dependency> |
85 | 97 | <groupId>com.fasterxml.jackson.core</groupId> |
86 | 98 | <artifactId>jackson-annotations</artifactId> |
87 | | - <version>${jackson.version}</version> |
| 99 | + <version>${jackson-annotations.version}</version> |
88 | 100 | </dependency> |
89 | 101 |
|
90 | 102 | <!-- JUnit / Mockito / Hamcrest --> |
|
113 | 125 | <plugin> |
114 | 126 | <groupId>org.apache.maven.plugins</groupId> |
115 | 127 | <artifactId>maven-clean-plugin</artifactId> |
116 | | - <version>3.4.1</version> |
| 128 | + <version>${mvn-clean.version}</version> |
117 | 129 | <configuration> |
118 | 130 | <filesets> |
119 | 131 | <fileset> |
|
136 | 148 | <plugin> |
137 | 149 | <groupId>org.apache.maven.plugins</groupId> |
138 | 150 | <artifactId>maven-compiler-plugin</artifactId> |
139 | | - <version>3.14.0</version> |
| 151 | + <version>${mvn-compiler.version}</version> |
140 | 152 | <configuration> |
141 | 153 | <compilerArgs> |
142 | 154 | <arg>-h</arg> |
|
148 | 160 | <plugin> |
149 | 161 | <groupId>org.apache.maven.plugins</groupId> |
150 | 162 | <artifactId>maven-enforcer-plugin</artifactId> |
151 | | - <version>3.5.0</version> |
| 163 | + <version>${mvn-enforcer.version}</version> |
152 | 164 | <executions> |
153 | 165 | <execution> |
154 | 166 | <id>check-preconditions</id> |
|
169 | 181 | <plugin> |
170 | 182 | <groupId>org.apache.maven.plugins</groupId> |
171 | 183 | <artifactId>maven-dependency-plugin</artifactId> |
172 | | - <version>3.8.1</version> |
| 184 | + <version>${mvn-dependency.version}</version> |
173 | 185 | <executions> |
174 | 186 | <execution> |
175 | 187 | <id>jar-paths-to-properties</id> |
|
181 | 193 | </plugin> |
182 | 194 | <plugin> |
183 | 195 | <artifactId>maven-resources-plugin</artifactId> |
184 | | - <version>3.3.1</version> |
| 196 | + <version>${mvn-resources.version}</version> |
185 | 197 | <executions> |
186 | 198 | <execution> |
187 | 199 | <id>copy-dlls</id> |
|
212 | 224 | <dependency> |
213 | 225 | <groupId>me.fabriciorby</groupId> |
214 | 226 | <artifactId>maven-surefire-junit5-tree-reporter</artifactId> |
215 | | - <version>1.4.0</version> |
| 227 | + <version>${junit-tree-reporter.version}</version> |
216 | 228 | </dependency> |
217 | 229 | </dependencies> |
218 | 230 | <configuration> |
|
243 | 255 | </plugin> |
244 | 256 | <plugin> |
245 | 257 | <artifactId>maven-source-plugin</artifactId> |
246 | | - <version>3.3.1</version> |
| 258 | + <version>${mvn-source.version}</version> |
247 | 259 | <executions> |
248 | 260 | <execution> |
249 | 261 | <id>attach-sources</id> |
|
255 | 267 | </plugin> |
256 | 268 | <plugin> |
257 | 269 | <artifactId>maven-javadoc-plugin</artifactId> |
258 | | - <version>3.11.2</version> |
| 270 | + <version>${mvn-javadoc.version}</version> |
259 | 271 | <executions> |
260 | 272 | <execution> |
261 | 273 | <id>attach-javadocs</id> |
|
357 | 369 | <plugin> |
358 | 370 | <groupId>org.codehaus.mojo</groupId> |
359 | 371 | <artifactId>exec-maven-plugin</artifactId> |
360 | | - <version>3.5.0</version> |
| 372 | + <version>${exec-maven.version}</version> |
361 | 373 | <configuration> |
362 | 374 | <executable>cmd</executable> |
363 | 375 | <workingDirectory>${project.basedir}</workingDirectory> |
|
404 | 416 | <plugins> |
405 | 417 | <plugin> |
406 | 418 | <artifactId>maven-gpg-plugin</artifactId> |
407 | | - <version>3.2.7</version> |
| 419 | + <version>${mvn-gpg.version}</version> |
408 | 420 | <executions> |
409 | 421 | <execution> |
410 | 422 | <id>sign-artifacts</id> |
|
454 | 466 | <plugin> |
455 | 467 | <groupId>org.apache.maven.plugins</groupId> |
456 | 468 | <artifactId>maven-deploy-plugin</artifactId> |
457 | | - <version>3.1.4</version> |
| 469 | + <version>${mvn-deploy.version}</version> |
458 | 470 | </plugin> |
459 | 471 | </plugins> |
460 | 472 | </build> |
|
0 commit comments