|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <groupId>org.cryptomator</groupId>
|
5 | 5 | <artifactId>webdav-nio-adapter</artifactId>
|
6 |
| - <version>1.2.6</version> |
| 6 | + <version>1.2.7</version> |
7 | 7 | <name>WebDAV-NIO Adapter</name>
|
8 | 8 | <description>Embedded Jetty serving a WebDAV servlet to access resources at a given NIO path.</description>
|
9 | 9 | <url>https://github.com/cryptomator/webdav-nio-adapter</url>
|
|
18 | 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
19 | 19 |
|
20 | 20 | <!-- dependencies -->
|
21 |
| - <webdavservlet.version>1.2.0</webdavservlet.version> |
22 |
| - <dagger.version>2.37</dagger.version> |
23 |
| - <jetty.version>10.0.6</jetty.version> |
24 |
| - <guava.version>30.1.1-jre</guava.version> |
25 |
| - <slf4j.version>1.7.31</slf4j.version> |
| 21 | + <webdavservlet.version>1.2.1</webdavservlet.version> |
| 22 | + <dagger.version>2.41</dagger.version> |
| 23 | + <jetty.version>10.0.8</jetty.version> |
| 24 | + <guava.version>31.1-jre</guava.version> |
| 25 | + <slf4j.version>1.7.36</slf4j.version> |
26 | 26 |
|
27 | 27 | <!-- test dependencies -->
|
28 |
| - <junit.jupiter.version>5.7.2</junit.jupiter.version> |
| 28 | + <junit.jupiter.version>5.8.2</junit.jupiter.version> |
| 29 | + |
| 30 | + <!-- mvn plugin dependencies --> |
| 31 | + <dependency-check.version>7.0.0</dependency-check.version> |
| 32 | + <jacoco.version>0.8.7</jacoco.version> |
| 33 | + <nexus-staging.version>1.6.8</nexus-staging.version> |
29 | 34 | </properties>
|
30 | 35 |
|
31 | 36 | <licenses>
|
|
106 | 111 | <plugin>
|
107 | 112 | <groupId>org.apache.maven.plugins</groupId>
|
108 | 113 | <artifactId>maven-compiler-plugin</artifactId>
|
109 |
| - <version>3.8.1</version> |
| 114 | + <version>3.10.1</version> |
110 | 115 | <configuration>
|
111 | 116 | <release>11</release>
|
112 | 117 | <showWarnings>true</showWarnings>
|
|
127 | 132 | <plugin>
|
128 | 133 | <groupId>org.apache.maven.plugins</groupId>
|
129 | 134 | <artifactId>maven-jar-plugin</artifactId>
|
130 |
| - <version>3.2.0</version> |
| 135 | + <version>3.2.2</version> |
131 | 136 | </plugin>
|
132 | 137 | <plugin>
|
133 | 138 | <artifactId>maven-source-plugin</artifactId>
|
|
143 | 148 | </plugin>
|
144 | 149 | <plugin>
|
145 | 150 | <artifactId>maven-javadoc-plugin</artifactId>
|
146 |
| - <version>3.3.0</version> |
| 151 | + <version>3.3.2</version> |
147 | 152 | <executions>
|
148 | 153 | <execution>
|
149 | 154 | <id>attach-javadocs</id>
|
|
164 | 169 | <plugin>
|
165 | 170 | <groupId>org.owasp</groupId>
|
166 | 171 | <artifactId>dependency-check-maven</artifactId>
|
167 |
| - <version>6.2.2</version> |
| 172 | + <version>${dependency-check.version}</version> |
168 | 173 | <configuration>
|
169 | 174 | <cveValidForHours>24</cveValidForHours>
|
170 | 175 | <failBuildOnCVSS>0</failBuildOnCVSS>
|
|
193 | 198 | <plugin>
|
194 | 199 | <groupId>org.jacoco</groupId>
|
195 | 200 | <artifactId>jacoco-maven-plugin</artifactId>
|
196 |
| - <version>0.8.7</version> |
| 201 | + <version>${jacoco.version}</version> |
197 | 202 | <executions>
|
198 | 203 | <execution>
|
199 | 204 | <id>prepare-agent</id>
|
|
246 | 251 | <repository>
|
247 | 252 | <id>ossrh</id>
|
248 | 253 | <name>Maven Central</name>
|
249 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 254 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
250 | 255 | </repository>
|
251 | 256 | </distributionManagement>
|
252 | 257 | <build>
|
253 | 258 | <plugins>
|
254 | 259 | <plugin>
|
255 | 260 | <groupId>org.sonatype.plugins</groupId>
|
256 | 261 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
257 |
| - <version>1.6.8</version> |
| 262 | + <version>${nexus-staging.version}</version> |
258 | 263 | <extensions>true</extensions>
|
259 | 264 | <configuration>
|
260 | 265 | <serverId>ossrh</serverId>
|
261 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 266 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
262 | 267 | <autoReleaseAfterClose>true</autoReleaseAfterClose>
|
263 | 268 | </configuration>
|
264 | 269 | </plugin>
|
|
0 commit comments