|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 | 3 | <groupId>com.github.anuragashok</groupId>
|
4 | 4 | <artifactId>wiremock-extension-record-delay</artifactId>
|
5 |
| - <version>1.0.5</version> |
| 5 | + <version>1.0.6</version> |
| 6 | + <packaging>jar</packaging> |
| 7 | + |
| 8 | + <name>wiremock-extension-record-delay</name> |
| 9 | + <description>set of wiremock extensions to capture delay during recording/snapshotting</description> |
| 10 | + <url>https://github.com/anuragashok/wiremock-extension-record-delay</url> |
| 11 | + |
| 12 | + <licenses> |
| 13 | + <license> |
| 14 | + <name>MIT License</name> |
| 15 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 16 | + </license> |
| 17 | + </licenses> |
| 18 | + |
| 19 | + <developers> |
| 20 | + <developer> |
| 21 | + <name>Anurag Ashok</name> |
| 22 | + <email>anurag@anuragashok.com</email> |
| 23 | + <organization>anuragashok</organization> |
| 24 | + <organizationUrl>https://github.com/anuragashok</organizationUrl> |
| 25 | + </developer> |
| 26 | + </developers> |
| 27 | + |
| 28 | + <scm> |
| 29 | + <connection>scm:git:git://github.com/anuragashok/wiremock-extension-record-delay.git</connection> |
| 30 | + <developerConnection>scm:git:ssh://github.com:anuragashok/wiremock-extension-record-delay.git</developerConnection> |
| 31 | + <url>https://github.com/anuragashok/wiremock-extension-record-delay/tree/main</url> |
| 32 | + </scm> |
| 33 | + |
6 | 34 |
|
7 | 35 | <properties>
|
8 | 36 | <maven.compiler.target>1.8</maven.compiler.target>
|
|
22 | 50 | <plugin>
|
23 | 51 | <groupId>org.apache.maven.plugins</groupId>
|
24 | 52 | <artifactId>maven-javadoc-plugin</artifactId>
|
25 |
| - <version>3.2.0</version> |
| 53 | + <executions> |
| 54 | + <execution> |
| 55 | + <id>attach-javadoc</id> |
| 56 | + <goals> |
| 57 | + <goal>jar</goal> |
| 58 | + </goals> |
| 59 | + </execution> |
| 60 | + </executions> |
| 61 | + </plugin> |
| 62 | + <plugin> |
| 63 | + <groupId>org.apache.maven.plugins</groupId> |
| 64 | + <artifactId>maven-source-plugin</artifactId> |
| 65 | + <executions> |
| 66 | + <execution> |
| 67 | + <id>attach-source</id> |
| 68 | + <goals> |
| 69 | + <goal>jar</goal> |
| 70 | + </goals> |
| 71 | + </execution> |
| 72 | + </executions> |
26 | 73 | </plugin>
|
27 | 74 | <plugin>
|
28 | 75 | <artifactId>maven-clean-plugin</artifactId>
|
|
0 commit comments