|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.cryptomator</groupId> |
7 | 7 | <artifactId>integrations-linux</artifactId> |
8 | | - <version>0.1.1</version> |
| 8 | + <version>1.0.0</version> |
9 | 9 |
|
10 | 10 | <name>integrations-linux</name> |
11 | 11 | <description>Provides optional Linux services used by Cryptomator</description> |
|
38 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
39 | 39 |
|
40 | 40 | <!-- runtime dependencies --> |
41 | | - <api.version>0.1.3</api.version> |
42 | | - <secret-service.version>1.2.1</secret-service.version> |
43 | | - <kdewallet.version>1.1.1</kdewallet.version> |
44 | | - <guava.version>30.0-jre</guava.version> |
45 | | - <slf4j.version>1.7.30</slf4j.version> |
46 | | - <junit.version>5.7.0</junit.version> |
47 | | - </properties> |
48 | | - |
49 | | - <repositories> |
50 | | - <repository> |
51 | | - <id>bintray</id> |
52 | | - <name>bintray</name> |
53 | | - <url>https://jcenter.bintray.com</url> |
54 | | - </repository> |
55 | | - </repositories> |
| 41 | + <api.version>1.0.0</api.version> |
| 42 | + <secret-service.version>1.7.0</secret-service.version> |
| 43 | + <kdewallet.version>1.2.3</kdewallet.version> |
| 44 | + <guava.version>31.0-jre</guava.version> |
| 45 | + <slf4j.version>1.7.32</slf4j.version> |
56 | 46 |
|
57 | | - <distributionManagement> |
58 | | - <repository> |
59 | | - <id>bintray-jcenter</id> |
60 | | - <url>https://api.bintray.com/maven/cryptomator/maven/integrations-linux/;publish=1</url> |
61 | | - </repository> |
62 | | - </distributionManagement> |
| 47 | + <!-- test dependencies --> |
| 48 | + <junit.version>5.8.1</junit.version> |
| 49 | + </properties> |
63 | 50 |
|
64 | 51 | <dependencies> |
65 | 52 | <dependency> |
|
101 | 88 | <plugin> |
102 | 89 | <groupId>org.apache.maven.plugins</groupId> |
103 | 90 | <artifactId>maven-compiler-plugin</artifactId> |
104 | | - <version>3.8.0</version> |
| 91 | + <version>3.8.1</version> |
105 | 92 | <configuration> |
106 | 93 | <release>11</release> |
107 | 94 | </configuration> |
108 | 95 | </plugin> |
109 | 96 | <plugin> |
110 | 97 | <groupId>org.apache.maven.plugins</groupId> |
111 | 98 | <artifactId>maven-surefire-plugin</artifactId> |
112 | | - <version>2.22.2</version> |
| 99 | + <version>3.0.0-M5</version> |
113 | 100 | </plugin> |
114 | 101 | <plugin> |
115 | 102 | <groupId>org.apache.maven.plugins</groupId> |
116 | 103 | <artifactId>maven-enforcer-plugin</artifactId> |
117 | | - <version>3.0.0-M3</version> |
| 104 | + <version>3.0.0</version> |
118 | 105 | <executions> |
119 | 106 | <execution> |
120 | 107 | <id>check-preconditions</id> |
|
135 | 122 | </plugin> |
136 | 123 | <plugin> |
137 | 124 | <artifactId>maven-source-plugin</artifactId> |
138 | | - <version>3.2.0</version> |
| 125 | + <version>3.2.1</version> |
139 | 126 | <executions> |
140 | 127 | <execution> |
141 | 128 | <id>attach-sources</id> |
|
147 | 134 | </plugin> |
148 | 135 | <plugin> |
149 | 136 | <artifactId>maven-javadoc-plugin</artifactId> |
150 | | - <version>3.2.0</version> |
| 137 | + <version>3.3.1</version> |
151 | 138 | <executions> |
152 | 139 | <execution> |
153 | 140 | <id>attach-javadocs</id> |
|
202 | 189 | </plugin> |
203 | 190 | </plugins> |
204 | 191 | </build> |
| 192 | + |
| 193 | + |
| 194 | + <profiles> |
| 195 | + <profile> |
| 196 | + <id>sign</id> |
| 197 | + <build> |
| 198 | + <plugins> |
| 199 | + <plugin> |
| 200 | + <artifactId>maven-gpg-plugin</artifactId> |
| 201 | + <version>3.0.1</version> |
| 202 | + <executions> |
| 203 | + <execution> |
| 204 | + <id>sign-artifacts</id> |
| 205 | + <phase>verify</phase> |
| 206 | + <goals> |
| 207 | + <goal>sign</goal> |
| 208 | + </goals> |
| 209 | + <configuration> |
| 210 | + <gpgArguments> |
| 211 | + <arg>--pinentry-mode</arg> |
| 212 | + <arg>loopback</arg> |
| 213 | + </gpgArguments> |
| 214 | + </configuration> |
| 215 | + </execution> |
| 216 | + </executions> |
| 217 | + </plugin> |
| 218 | + </plugins> |
| 219 | + </build> |
| 220 | + </profile> |
| 221 | + |
| 222 | + <profile> |
| 223 | + <id>deploy-central</id> |
| 224 | + <distributionManagement> |
| 225 | + <repository> |
| 226 | + <id>ossrh</id> |
| 227 | + <name>Maven Central</name> |
| 228 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 229 | + </repository> |
| 230 | + </distributionManagement> |
| 231 | + <build> |
| 232 | + <plugins> |
| 233 | + <plugin> |
| 234 | + <groupId>org.sonatype.plugins</groupId> |
| 235 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 236 | + <version>1.6.8</version> |
| 237 | + <extensions>true</extensions> |
| 238 | + <configuration> |
| 239 | + <serverId>ossrh</serverId> |
| 240 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 241 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 242 | + </configuration> |
| 243 | + </plugin> |
| 244 | + </plugins> |
| 245 | + </build> |
| 246 | + </profile> |
| 247 | + |
| 248 | + <profile> |
| 249 | + <id>deploy-github</id> |
| 250 | + <distributionManagement> |
| 251 | + <repository> |
| 252 | + <id>github</id> |
| 253 | + <name>GitHub Packages</name> |
| 254 | + <url>https://maven.pkg.github.com/cryptomator/integrations-linux</url> |
| 255 | + </repository> |
| 256 | + </distributionManagement> |
| 257 | + </profile> |
| 258 | + </profiles> |
205 | 259 | </project> |
0 commit comments