Skip to content

Commit 11b6188

Browse files
author
Anurag Ashok
committed
add metadata to pom for maven central
1 parent 4bdbba9 commit 11b6188

File tree

1 file changed

+49
-2
lines changed

1 file changed

+49
-2
lines changed

pom.xml

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,35 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.github.anuragashok</groupId>
44
<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+
634

735
<properties>
836
<maven.compiler.target>1.8</maven.compiler.target>
@@ -22,7 +50,26 @@
2250
<plugin>
2351
<groupId>org.apache.maven.plugins</groupId>
2452
<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>
2673
</plugin>
2774
<plugin>
2875
<artifactId>maven-clean-plugin</artifactId>

0 commit comments

Comments
 (0)