|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.cryptomator</groupId> |
7 | 7 | <artifactId>integrations-api</artifactId> |
8 | | - <version>1.0.0</version> |
| 8 | + <version>1.1.0</version> |
9 | 9 |
|
10 | 10 | <name>Cryptomator Integrations API</name> |
11 | 11 | <description>Defines optional service interfaces that may be used by Cryptomator</description> |
|
37 | 37 | </license> |
38 | 38 | </licenses> |
39 | 39 |
|
| 40 | + <dependencies> |
| 41 | + <dependency> |
| 42 | + <groupId>org.slf4j</groupId> |
| 43 | + <artifactId>slf4j-api</artifactId> |
| 44 | + <version>1.7.36</version> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>org.jetbrains</groupId> |
| 49 | + <artifactId>annotations</artifactId> |
| 50 | + <version>23.0.0</version> |
| 51 | + <scope>provided</scope> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.slf4j</groupId> |
| 55 | + <artifactId>slf4j-simple</artifactId> |
| 56 | + <version>1.7.36</version> |
| 57 | + <scope>test</scope> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.junit.jupiter</groupId> |
| 61 | + <artifactId>junit-jupiter</artifactId> |
| 62 | + <version>5.8.2</version> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>org.mockito</groupId> |
| 67 | + <artifactId>mockito-core</artifactId> |
| 68 | + <version>4.3.1</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + </dependencies> |
| 72 | + |
40 | 73 | <build> |
41 | 74 | <plugins> |
42 | 75 | <plugin> |
43 | 76 | <groupId>org.apache.maven.plugins</groupId> |
44 | 77 | <artifactId>maven-compiler-plugin</artifactId> |
45 | | - <version>3.8.1</version> |
| 78 | + <version>3.9.0</version> |
46 | 79 | <configuration> |
47 | | - <release>11</release> |
| 80 | + <release>17</release> |
48 | 81 | </configuration> |
49 | 82 | </plugin> |
50 | 83 | <plugin> |
|
72 | 105 | </executions> |
73 | 106 | <configuration> |
74 | 107 | <quiet>true</quiet> |
75 | | - <release>11</release> |
| 108 | + <release>17</release> |
76 | 109 | <tags> |
77 | 110 | <!-- workaround for "unknown tag: implNote", see https://blog.codefx.org/java/new-javadoc-tags/#Maven --> |
78 | 111 | <tag> |
|
110 | 143 | <plugins> |
111 | 144 | <plugin> |
112 | 145 | <artifactId>maven-gpg-plugin</artifactId> |
113 | | - <version>1.6</version> |
| 146 | + <version>3.0.1</version> |
114 | 147 | <executions> |
115 | 148 | <execution> |
116 | 149 | <id>sign-artifacts</id> |
|
137 | 170 | <repository> |
138 | 171 | <id>ossrh</id> |
139 | 172 | <name>Maven Central</name> |
140 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 173 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
141 | 174 | </repository> |
142 | 175 | </distributionManagement> |
143 | 176 | <build> |
|
149 | 182 | <extensions>true</extensions> |
150 | 183 | <configuration> |
151 | 184 | <serverId>ossrh</serverId> |
152 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 185 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
153 | 186 | <autoReleaseAfterClose>true</autoReleaseAfterClose> |
154 | 187 | </configuration> |
155 | 188 | </plugin> |
|
0 commit comments