|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.cryptomator</groupId> |
7 | 7 | <artifactId>integrations-linux</artifactId> |
8 | | - <version>1.2.1</version> |
| 8 | + <version>1.3.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>19</project.jdk.version> |
| 39 | + <project.jdk.version>20</project.jdk.version> |
40 | 40 |
|
41 | 41 | <!-- runtime dependencies --> |
42 | 42 |
|
43 | | - <api.version>1.2.0</api.version> |
| 43 | + <api.version>1.3.0</api.version> |
44 | 44 | <secret-service.version>1.8.1-jdk17</secret-service.version> |
45 | | - <kdewallet.version>1.2.8</kdewallet.version> |
46 | | - <guava.version>31.1-jre</guava.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> |
47 | 48 | <slf4j.version>1.7.36</slf4j.version> |
| 49 | + <commons-lang3.version>3.12.0</commons-lang3.version> |
48 | 50 |
|
49 | 51 | <!-- test dependencies --> |
50 | 52 | <junit.version>5.8.2</junit.version> |
51 | 53 |
|
52 | 54 | <!-- build plugin dependencies --> |
53 | | - <dependency-check.version>8.1.0</dependency-check.version> |
| 55 | + <dependency-check.version>8.2.1</dependency-check.version> |
54 | 56 | <nexus-staging.version>1.6.8</nexus-staging.version> |
55 | 57 | </properties> |
56 | 58 |
|
|
80 | 82 | <artifactId>kdewallet</artifactId> |
81 | 83 | <version>${kdewallet.version}</version> |
82 | 84 | </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 | + <!-- Java bindings for appindicator --> |
| 92 | + <dependency> |
| 93 | + <groupId>org.purejava</groupId> |
| 94 | + <artifactId>libappindicator-gtk3-java-minimal</artifactId> |
| 95 | + <version>${appindicator.version}</version> |
| 96 | + </dependency> |
83 | 97 | <dependency> |
84 | 98 | <groupId>org.junit.jupiter</groupId> |
85 | 99 | <artifactId>junit-jupiter</artifactId> |
|
96 | 110 | <version>3.9.0</version> |
97 | 111 | <configuration> |
98 | 112 | <release>${project.jdk.version}</release> |
| 113 | + <compilerArgs> |
| 114 | + <arg>--enable-preview</arg> |
| 115 | + </compilerArgs> |
99 | 116 | </configuration> |
100 | 117 | </plugin> |
101 | 118 | <plugin> |
|
190 | 207 | <name>see</name> |
191 | 208 | </tag> |
192 | 209 | </tags> |
| 210 | + <additionalOptions>--enable-preview</additionalOptions> |
193 | 211 | </configuration> |
194 | 212 | </plugin> |
195 | 213 | </plugins> |
|
0 commit comments