|
6 | 6 |
|
7 | 7 | <groupId>com.unzer.payment</groupId> |
8 | 8 | <artifactId>java-sdk</artifactId> |
9 | | - <version>3.1.1</version> |
| 9 | + <version>4.0.0</version> |
10 | 10 | <name>Unzer Java SDK</name> |
11 | 11 | <description>Unzer Java SDK provides an easy way to connect to the Unzer Rest API.</description> |
12 | 12 | <url>https://docs.unzer.com/</url> |
|
49 | 49 |
|
50 | 50 | <distributionManagement> |
51 | 51 | <snapshotRepository> |
52 | | - <id>mpay24</id> |
53 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 52 | + <id>ossrh</id> |
| 53 | + <name>Snapshot Repository OSSRH</name> |
| 54 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
54 | 55 | </snapshotRepository> |
55 | 56 | <repository> |
56 | | - <id>mpay24</id> |
57 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 57 | + <id>ossrh</id> |
| 58 | + <name>Central Repository OSSRH</name> |
| 59 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
58 | 60 | </repository> |
59 | 61 | </distributionManagement> |
60 | 62 |
|
|
63 | 65 | <plugin> |
64 | 66 | <groupId>org.apache.maven.plugins</groupId> |
65 | 67 | <artifactId>maven-javadoc-plugin</artifactId> |
66 | | - <version>3.2.0</version> |
| 68 | + <version>4.0.0</version> |
67 | 69 | </plugin> |
68 | 70 | </plugins> |
69 | 71 | </reporting> |
70 | 72 |
|
71 | 73 | <build> |
72 | 74 | <sourceDirectory>src/main/java</sourceDirectory> |
73 | 75 | <testSourceDirectory>src/test/java</testSourceDirectory> |
74 | | - <resources> |
75 | | - <resource> |
76 | | - <directory>src/main/resources</directory> |
77 | | - <filtering>true</filtering> |
78 | | - </resource> |
79 | | - </resources> |
80 | 76 | <testResources> |
81 | 77 | <testResource> |
82 | 78 | <directory>src/test/resources</directory> |
|
86 | 82 | <plugin> |
87 | 83 | <groupId>org.owasp</groupId> |
88 | 84 | <artifactId>dependency-check-maven</artifactId> |
89 | | - <version>6.5.0</version> |
| 85 | + <version>8.0.1</version> |
90 | 86 | <configuration> |
91 | 87 | <skipProvidedScope>true</skipProvidedScope> |
92 | 88 | <skipRuntimeScope>true</skipRuntimeScope> |
|
143 | 139 | <plugin> |
144 | 140 | <groupId>org.apache.maven.plugins</groupId> |
145 | 141 | <artifactId>maven-javadoc-plugin</artifactId> |
146 | | - <version>3.4.0</version> |
| 142 | + <version>3.4.1</version> |
147 | 143 | <configuration> |
148 | 144 | <doclint>none</doclint> |
149 | 145 | </configuration> |
|
173 | 169 | <plugin> |
174 | 170 | <groupId>org.apache.maven.plugins</groupId> |
175 | 171 | <artifactId>maven-gpg-plugin</artifactId> |
176 | | - <version>1.6</version> |
| 172 | + <version>3.0.1</version> |
177 | 173 | <executions> |
178 | 174 | <execution> |
179 | 175 | <id>sign-artifacts</id> |
|
190 | 186 | </execution> |
191 | 187 | </executions> |
192 | 188 | </plugin> |
193 | | - |
194 | | - <plugin> |
195 | | - <groupId>org.sonatype.plugins</groupId> |
196 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
197 | | - <version>1.6.8</version> |
198 | | - <extensions>true</extensions> |
199 | | - <configuration> |
200 | | - <serverId>mpay24</serverId> |
201 | | - <nexusUrl>https://s01.oss.sonatype.org</nexusUrl> |
202 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
203 | | - <stagingProgressTimeoutMinutes>20</stagingProgressTimeoutMinutes> |
204 | | - </configuration> |
205 | | - </plugin> |
206 | 189 | <plugin> |
207 | 190 | <groupId>org.apache.maven.plugins</groupId> |
208 | 191 | <artifactId>maven-surefire-plugin</artifactId> |
|
224 | 207 | </execution> |
225 | 208 | </executions> |
226 | 209 | </plugin> |
227 | | - |
| 210 | + <plugin> |
| 211 | + <groupId>org.codehaus.mojo</groupId> |
| 212 | + <artifactId>templating-maven-plugin</artifactId> |
| 213 | + <version>1.0.0</version> |
| 214 | + <executions> |
| 215 | + <execution> |
| 216 | + <id>filtering-java-templates</id> |
| 217 | + <goals> |
| 218 | + <goal>filter-sources</goal> |
| 219 | + </goals> |
| 220 | + </execution> |
| 221 | + </executions> |
| 222 | + </plugin> |
228 | 223 | <plugin> |
229 | 224 | <groupId>com.mycila</groupId> |
230 | 225 | <artifactId>license-maven-plugin</artifactId> |
|
298 | 293 | <scope>test</scope> |
299 | 294 | </dependency> |
300 | 295 |
|
| 296 | + <dependency> |
| 297 | + <groupId>com.github.tomakehurst</groupId> |
| 298 | + <artifactId>wiremock-jre8</artifactId> |
| 299 | + <version>2.35.0</version> |
| 300 | + <scope>test</scope> |
| 301 | + </dependency> |
| 302 | + |
301 | 303 | <dependency> |
302 | 304 | <groupId>org.awaitility</groupId> |
303 | 305 | <artifactId>awaitility</artifactId> |
|
353 | 355 | <version>5.3.0</version> |
354 | 356 | <scope>test</scope> |
355 | 357 | </dependency> |
| 358 | + |
| 359 | + <dependency> |
| 360 | + <groupId>org.apache.logging.log4j</groupId> |
| 361 | + <artifactId>log4j-core</artifactId> |
| 362 | + <version>2.19.0</version> |
| 363 | + <scope>test</scope> |
| 364 | + </dependency> |
| 365 | + |
| 366 | + <dependency> |
| 367 | + <groupId>org.apache.logging.log4j</groupId> |
| 368 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 369 | + <version>2.19.0</version> |
| 370 | + <scope>test</scope> |
| 371 | + </dependency> |
356 | 372 | </dependencies> |
357 | 373 |
|
358 | 374 | <dependencyManagement> |
|
0 commit comments