|
4 | 4 |
|
5 | 5 | <groupId>org.wiremock.integrations.testcontainers</groupId>
|
6 | 6 | <artifactId>wiremock-testcontainers-module</artifactId>
|
7 |
| - <description>Testcontainers Java module for WireMock</description> |
8 |
| - <version>1.0-alpha-8-SNAPSHOT</version> |
| 7 | + <name>WireMock module for Testcontainers Java</name> |
| 8 | + <description>This Testcontainers module allows provisioning the WireMock server as a standalone container within your unit tests, based on WireMock Docker</description> |
| 9 | + <url>https://github.com/wiremock/wiremock-testcontainers-java</url> |
| 10 | + <version>1.0-alpha-12-SNAPSHOT</version> |
9 | 11 |
|
10 | 12 | <licenses>
|
11 | 13 | <license>
|
|
15 | 17 | </license>
|
16 | 18 | </licenses>
|
17 | 19 |
|
| 20 | + <developers> |
| 21 | + <developer> |
| 22 | + <id>oleg-nenashev</id> <!-- OSSRH --> |
| 23 | + <name>Oleg Nenashev</name> |
| 24 | + <url>https://github.com/oleg-nenashev/</url> |
| 25 | + <timezone>CEST</timezone> |
| 26 | + <organization>WireMock Inc.</organization> |
| 27 | + <organizationUrl>https://www.wiremock.io/</organizationUrl> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + |
18 | 31 | <properties>
|
19 | 32 | <java.version>1.8</java.version>
|
20 | 33 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
21 | 34 | <maven.compiler.source>${java.version}</maven.compiler.source>
|
22 | 35 | <wiremock.version>3.5.4</wiremock.version>
|
23 |
| - <testcontainers.version>1.19.0</testcontainers.version> |
24 |
| - <junit.version>5.10.0</junit.version> |
25 |
| - <assertj.version>3.24.2</assertj.version> |
26 |
| - <awaitility.version>4.2.0</awaitility.version> |
| 36 | + <testcontainers.version>1.19.8</testcontainers.version> |
| 37 | + <junit.version>5.10.2</junit.version> |
| 38 | + <assertj.version>3.26.3</assertj.version> |
| 39 | + <awaitility.version>4.2.2</awaitility.version> |
27 | 40 | <project.scm.id>github</project.scm.id>
|
28 | 41 | </properties>
|
29 | 42 |
|
|
54 | 67 | <!-- Fix dependency convergence [logback-classic vs junit] -->
|
55 | 68 | <groupId>org.slf4j</groupId>
|
56 | 69 | <artifactId>slf4j-api</artifactId>
|
57 |
| - <version>2.0.7</version> |
| 70 | + <version>2.0.15</version> |
58 | 71 | </dependency>
|
59 | 72 | </dependencies>
|
60 | 73 | </dependencyManagement>
|
|
110 | 123 | <plugin>
|
111 | 124 | <groupId>org.apache.maven.plugins</groupId>
|
112 | 125 | <artifactId>maven-compiler-plugin</artifactId>
|
113 |
| - <version>3.11.0</version> |
| 126 | + <version>3.13.0</version> |
114 | 127 | </plugin>
|
115 | 128 | <plugin>
|
116 | 129 | <groupId>org.apache.maven.plugins</groupId>
|
117 | 130 | <artifactId>maven-surefire-plugin</artifactId>
|
118 |
| - <version>3.1.2</version> |
| 131 | + <version>3.2.5</version> |
119 | 132 | </plugin>
|
120 | 133 |
|
121 | 134 | <plugin>
|
122 | 135 | <groupId>org.apache.maven.plugins</groupId>
|
123 | 136 | <artifactId>maven-source-plugin</artifactId>
|
124 |
| - <version>3.3.0</version> |
| 137 | + <version>3.3.1</version> |
125 | 138 | <executions>
|
126 | 139 | <execution>
|
127 | 140 | <id>attach-sources</id>
|
|
134 | 147 | <plugin>
|
135 | 148 | <groupId>org.apache.maven.plugins</groupId>
|
136 | 149 | <artifactId>maven-javadoc-plugin</artifactId>
|
137 |
| - <version>3.5.0</version> |
| 150 | + <version>3.8.0</version> |
138 | 151 | <executions>
|
139 | 152 | <execution>
|
140 | 153 | <id>attach-javadocs</id>
|
|
149 | 162 | <plugin>
|
150 | 163 | <groupId>org.apache.maven.plugins</groupId>
|
151 | 164 | <artifactId>maven-dependency-plugin</artifactId>
|
152 |
| - <version>3.6.0</version> |
| 165 | + <version>3.7.1</version> |
153 | 166 | <executions>
|
154 | 167 | <execution>
|
155 | 168 | <id>copy</id>
|
|
218 | 231 | <url>https://maven.pkg.github.com/wiremock/wiremock-testcontainers-java</url>
|
219 | 232 | </repository>
|
220 | 233 | </distributionManagement>
|
| 234 | + |
| 235 | + <profiles> |
| 236 | + <profile> |
| 237 | + <id>release</id> |
| 238 | + <properties> |
| 239 | + <version.maven-release-plugin>3.0.1</version.maven-release-plugin> |
| 240 | + <version.maven-gpg-plugin>3.2.4</version.maven-gpg-plugin> |
| 241 | + </properties> |
| 242 | + <build> |
| 243 | + <pluginManagement> |
| 244 | + <plugins> |
| 245 | + <plugin> |
| 246 | + <artifactId>maven-release-plugin</artifactId> |
| 247 | + <version>${version.maven-release-plugin}</version> |
| 248 | + <configuration> |
| 249 | + <tagNameFormat>@{project.version}</tagNameFormat> |
| 250 | + </configuration> |
| 251 | + </plugin> |
| 252 | + <!-- The key's name & passphrase are configured via GitHub's setup-java action. --> |
| 253 | + <plugin> |
| 254 | + <artifactId>maven-gpg-plugin</artifactId> |
| 255 | + <version>${version.maven-gpg-plugin}</version> |
| 256 | + <executions> |
| 257 | + <execution> |
| 258 | + <id>sign-artifacts</id> |
| 259 | + <phase>verify</phase> |
| 260 | + <goals> |
| 261 | + <goal>sign</goal> |
| 262 | + </goals> |
| 263 | + <configuration> |
| 264 | + <!-- This is required to make sure the plugin does not stop asking for --> |
| 265 | + <!-- user input on the passphrase --> |
| 266 | + <gpgArguments> |
| 267 | + <arg>--pinentry-mode</arg> |
| 268 | + <arg>loopback</arg> |
| 269 | + </gpgArguments> |
| 270 | + </configuration> |
| 271 | + </execution> |
| 272 | + </executions> |
| 273 | + </plugin> |
| 274 | + </plugins> |
| 275 | + </pluginManagement> |
| 276 | + <plugins> |
| 277 | + <plugin> |
| 278 | + <artifactId>maven-gpg-plugin</artifactId> |
| 279 | + </plugin> |
| 280 | + </plugins> |
| 281 | + </build> |
| 282 | + </profile> |
| 283 | + <profile> |
| 284 | + <id>mavencentral-release</id> |
| 285 | + <properties> |
| 286 | + <version.nexus-staging-maven-plugin>1.7.0</version.nexus-staging-maven-plugin> |
| 287 | + </properties> |
| 288 | + <distributionManagement> |
| 289 | + <repository> |
| 290 | + <id>ossrh</id> |
| 291 | + <name>Central Repository OSSRH</name> |
| 292 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 293 | + </repository> |
| 294 | + </distributionManagement> |
| 295 | + <build> |
| 296 | + <pluginManagement> |
| 297 | + <plugins> |
| 298 | + <plugin> |
| 299 | + <groupId>org.sonatype.plugins</groupId> |
| 300 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 301 | + <version>${version.nexus-staging-maven-plugin}</version> |
| 302 | + <extensions>true</extensions> |
| 303 | + <configuration> |
| 304 | + <serverId>ossrh</serverId> |
| 305 | + <nexusUrl>https://oss.sonatype.org</nexusUrl> |
| 306 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 307 | + </configuration> |
| 308 | + </plugin> |
| 309 | + </plugins> |
| 310 | + </pluginManagement> |
| 311 | + <plugins> |
| 312 | + <plugin> |
| 313 | + <groupId>org.sonatype.plugins</groupId> |
| 314 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 315 | + </plugin> |
| 316 | + </plugins> |
| 317 | + </build> |
| 318 | + </profile> |
| 319 | + </profiles> |
221 | 320 | </project>
|
0 commit comments