|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.cryptomator</groupId> |
7 | 7 | <artifactId>integrations-mac</artifactId> |
8 | | - <version>1.3.0</version> |
| 8 | + <version>1.3.1</version> |
9 | 9 |
|
10 | 10 | <name>Cryptomator Integrations for macOS</name> |
11 | 11 | <description>Provides optional macOS services used by Cryptomator</description> |
12 | 12 | <url>https://github.com/cryptomator/integrations-mac</url> |
| 13 | + |
13 | 14 | <scm> |
14 | 15 | < connection>scm:git: [email protected]:cryptomator/integrations-mac.git</ connection> |
15 | 16 | < developerConnection>scm:git: [email protected]:cryptomator/integrations-mac.git</ developerConnection> |
16 | | - <url>git@github.com:cryptomator/integrations-mac.git</url> |
| 17 | + <url>https://github.com/cryptomator/integrations-mac</url> |
17 | 18 | </scm> |
| 19 | + |
18 | 20 | <developers> |
19 | 21 | <developer> |
20 | 22 | <name>Sebastian Stenzel</name> |
|
30 | 32 | <project.jdk.version>17</project.jdk.version> |
31 | 33 |
|
32 | 34 | <!-- runtime dependencies --> |
33 | | - <api.version>1.5.0</api.version> |
34 | | - <slf4j.version>2.0.16</slf4j.version> |
| 35 | + <api.version>1.5.1</api.version> |
| 36 | + <slf4j.version>2.0.17</slf4j.version> |
35 | 37 |
|
36 | 38 | <!-- test dependencies --> |
37 | | - <junit.jupiter.version>5.11.4</junit.jupiter.version> |
| 39 | + <junit.jupiter.version>5.12.0</junit.jupiter.version> |
38 | 40 | <mockito.version>5.15.2</mockito.version> |
39 | 41 |
|
40 | 42 | <!-- build plugin dependencies --> |
41 | | - <dependency-check.version>11.1.1</dependency-check.version> |
42 | | - <nexus-staging.version>1.7.0</nexus-staging.version> |
| 43 | + <dependency-check.version>12.1.0</dependency-check.version> |
| 44 | + <central-publishing.version>0.7.0</central-publishing.version> |
43 | 45 | </properties> |
44 | 46 |
|
45 | 47 | <licenses> |
|
88 | 90 | <plugin> |
89 | 91 | <groupId>org.apache.maven.plugins</groupId> |
90 | 92 | <artifactId>maven-clean-plugin</artifactId> |
91 | | - <version>3.4.0</version> |
| 93 | + <version>3.4.1</version> |
92 | 94 | <configuration> |
93 | 95 | <filesets> |
94 | 96 | <fileset> |
|
104 | 106 | <plugin> |
105 | 107 | <groupId>org.apache.maven.plugins</groupId> |
106 | 108 | <artifactId>maven-compiler-plugin</artifactId> |
107 | | - <version>3.13.0</version> |
| 109 | + <version>3.14.0</version> |
108 | 110 | <configuration> |
109 | 111 | <compilerArgs> |
110 | 112 | <arg>-h</arg> |
|
286 | 288 | <skipTestScope>true</skipTestScope> |
287 | 289 | <detail>true</detail> |
288 | 290 | <suppressionFile>suppression.xml</suppressionFile> |
289 | | - <nvdApiKey>${env.NVD_API_KEY}</nvdApiKey> |
| 291 | + <nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable> |
290 | 292 | </configuration> |
291 | 293 | <executions> |
292 | 294 | <execution> |
|
316 | 318 | <goal>sign</goal> |
317 | 319 | </goals> |
318 | 320 | <configuration> |
319 | | - <gpgArguments> |
320 | | - <arg>--pinentry-mode</arg> |
321 | | - <arg>loopback</arg> |
322 | | - </gpgArguments> |
| 321 | + <signer>bc</signer> |
323 | 322 | </configuration> |
324 | 323 | </execution> |
325 | 324 | </executions> |
|
330 | 329 |
|
331 | 330 | <profile> |
332 | 331 | <id>deploy-central</id> |
333 | | - <distributionManagement> |
334 | | - <repository> |
335 | | - <id>ossrh</id> |
336 | | - <name>Maven Central</name> |
337 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
338 | | - </repository> |
339 | | - </distributionManagement> |
340 | 332 | <build> |
341 | 333 | <plugins> |
342 | 334 | <plugin> |
343 | | - <groupId>org.sonatype.plugins</groupId> |
344 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
345 | | - <version>${nexus-staging.version}</version> |
| 335 | + <groupId>org.sonatype.central</groupId> |
| 336 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 337 | + <version>${central-publishing.version}</version> |
346 | 338 | <extensions>true</extensions> |
347 | 339 | <configuration> |
348 | | - <serverId>ossrh</serverId> |
349 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
350 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 340 | + <publishingServerId>central</publishingServerId> |
| 341 | + <autoPublish>true</autoPublish> |
351 | 342 | </configuration> |
352 | 343 | </plugin> |
353 | 344 | </plugins> |
|
368 | 359 | <plugin> |
369 | 360 | <groupId>org.apache.maven.plugins</groupId> |
370 | 361 | <artifactId>maven-deploy-plugin</artifactId> |
371 | | - <version>3.1.3</version> |
| 362 | + <version>3.1.4</version> |
372 | 363 | </plugin> |
373 | 364 | </plugins> |
374 | 365 | </build> |
|
0 commit comments