|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.cryptomator</groupId> |
7 | 7 | <artifactId>integrations-linux</artifactId> |
8 | | - <version>1.3.0</version> |
| 8 | + <version>1.4.0</version> |
9 | 9 |
|
10 | 10 | <name>integrations-linux</name> |
11 | 11 | <description>Provides optional Linux services used by Cryptomator</description> |
|
36 | 36 |
|
37 | 37 | <properties> |
38 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
39 | | - <project.jdk.version>20</project.jdk.version> |
| 39 | + <project.jdk.version>21</project.jdk.version> |
40 | 40 |
|
41 | 41 | <!-- runtime dependencies --> |
42 | 42 |
|
43 | 43 | <api.version>1.3.0</api.version> |
44 | | - <secret-service.version>1.8.1-jdk17</secret-service.version> |
45 | | - <kdewallet.version>1.3.2</kdewallet.version> |
46 | | - <appindicator.version>1.3.4</appindicator.version> |
47 | | - <guava.version>32.0.0-jre</guava.version> |
48 | | - <slf4j.version>1.7.36</slf4j.version> |
49 | | - <commons-lang3.version>3.12.0</commons-lang3.version> |
| 44 | + <secret-service.version>2.0.0-alpha</secret-service.version> |
| 45 | + <kdewallet.version>1.3.3</kdewallet.version> |
| 46 | + <appindicator.version>1.3.6</appindicator.version> |
| 47 | + <slf4j.version>2.0.9</slf4j.version> |
50 | 48 |
|
51 | 49 | <!-- test dependencies --> |
52 | | - <junit.version>5.8.2</junit.version> |
| 50 | + <junit.version>5.10.1</junit.version> |
53 | 51 |
|
54 | 52 | <!-- build plugin dependencies --> |
55 | | - <dependency-check.version>8.2.1</dependency-check.version> |
| 53 | + <dependency-check.version>8.4.2</dependency-check.version> |
56 | 54 | <nexus-staging.version>1.6.8</nexus-staging.version> |
57 | 55 | </properties> |
58 | 56 |
|
|
67 | 65 | <artifactId>slf4j-api</artifactId> |
68 | 66 | <version>${slf4j.version}</version> |
69 | 67 | </dependency> |
70 | | - <dependency> |
71 | | - <groupId>com.google.guava</groupId> |
72 | | - <artifactId>guava</artifactId> |
73 | | - <version>${guava.version}</version> |
74 | | - </dependency> |
75 | 68 | <dependency> |
76 | 69 | <groupId>de.swiesend</groupId> |
77 | 70 | <artifactId>secret-service</artifactId> |
|
82 | 75 | <artifactId>kdewallet</artifactId> |
83 | 76 | <version>${kdewallet.version}</version> |
84 | 77 | </dependency> |
85 | | - <!-- Apache Commons --> |
86 | | - <dependency> |
87 | | - <groupId>org.apache.commons</groupId> |
88 | | - <artifactId>commons-lang3</artifactId> |
89 | | - <version>${commons-lang3.version}</version> |
90 | | - </dependency> |
91 | 78 | <!-- Java bindings for appindicator --> |
92 | 79 | <dependency> |
93 | 80 | <groupId>org.purejava</groupId> |
|
107 | 94 | <plugin> |
108 | 95 | <groupId>org.apache.maven.plugins</groupId> |
109 | 96 | <artifactId>maven-compiler-plugin</artifactId> |
110 | | - <version>3.9.0</version> |
| 97 | + <version>3.11.0</version> |
111 | 98 | <configuration> |
112 | 99 | <release>${project.jdk.version}</release> |
113 | 100 | <compilerArgs> |
|
118 | 105 | <plugin> |
119 | 106 | <groupId>org.apache.maven.plugins</groupId> |
120 | 107 | <artifactId>maven-surefire-plugin</artifactId> |
121 | | - <version>3.0.0-M5</version> |
| 108 | + <version>3.2.1</version> |
122 | 109 | </plugin> |
123 | 110 | <plugin> |
124 | 111 | <groupId>org.apache.maven.plugins</groupId> |
125 | 112 | <artifactId>maven-enforcer-plugin</artifactId> |
126 | | - <version>3.0.0</version> |
| 113 | + <version>3.4.1</version> |
127 | 114 | <executions> |
128 | 115 | <execution> |
129 | 116 | <id>check-preconditions</id> |
|
144 | 131 | </plugin> |
145 | 132 | <plugin> |
146 | 133 | <artifactId>maven-source-plugin</artifactId> |
147 | | - <version>3.2.1</version> |
| 134 | + <version>3.3.0</version> |
148 | 135 | <executions> |
149 | 136 | <execution> |
150 | 137 | <id>attach-sources</id> |
|
156 | 143 | </plugin> |
157 | 144 | <plugin> |
158 | 145 | <artifactId>maven-javadoc-plugin</artifactId> |
159 | | - <version>3.3.1</version> |
| 146 | + <version>3.6.0</version> |
160 | 147 | <executions> |
161 | 148 | <execution> |
162 | 149 | <id>attach-javadocs</id> |
|
248 | 235 | <plugins> |
249 | 236 | <plugin> |
250 | 237 | <artifactId>maven-gpg-plugin</artifactId> |
251 | | - <version>3.0.1</version> |
| 238 | + <version>3.1.0</version> |
252 | 239 | <executions> |
253 | 240 | <execution> |
254 | 241 | <id>sign-artifacts</id> |
|
283 | 270 | <plugin> |
284 | 271 | <groupId>org.sonatype.plugins</groupId> |
285 | 272 | <artifactId>nexus-staging-maven-plugin</artifactId> |
286 | | - <version>1.6.8</version> |
| 273 | + <version>1.6.13</version> |
287 | 274 | <extensions>true</extensions> |
288 | 275 | <configuration> |
289 | 276 | <serverId>ossrh</serverId> |
|
309 | 296 | <plugin> |
310 | 297 | <groupId>org.apache.maven.plugins</groupId> |
311 | 298 | <artifactId>maven-deploy-plugin</artifactId> |
312 | | - <version>3.1.0</version> |
| 299 | + <version>3.1.1</version> |
313 | 300 | </plugin> |
314 | 301 | </plugins> |
315 | 302 | </build> |
|
0 commit comments