Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add metadata to pom for maven central
  • Loading branch information
Anurag Ashok committed Feb 10, 2021
1 parent 4bdbba9 commit 11b6188
Showing 1 changed file with 49 additions and 2 deletions.
51 changes: 49 additions & 2 deletions pom.xml
Expand Up @@ -2,7 +2,35 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.anuragashok</groupId>
<artifactId>wiremock-extension-record-delay</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>jar</packaging>

<name>wiremock-extension-record-delay</name>
<description>set of wiremock extensions to capture delay during recording/snapshotting</description>
<url>https://github.com/anuragashok/wiremock-extension-record-delay</url>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>

<developers>
<developer>
<name>Anurag Ashok</name>
<email>anurag@anuragashok.com</email>
<organization>anuragashok</organization>
<organizationUrl>https://github.com/anuragashok</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/anuragashok/wiremock-extension-record-delay.git</connection>
<developerConnection>scm:git:ssh://github.com:anuragashok/wiremock-extension-record-delay.git</developerConnection>
<url>https://github.com/anuragashok/wiremock-extension-record-delay/tree/main</url>
</scm>


<properties>
<maven.compiler.target>1.8</maven.compiler.target>
Expand All @@ -22,7 +50,26 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
Expand Down

0 comments on commit 11b6188

Please sign in to comment.