Skip to content
This repository has been archived by the owner on Jan 27, 2022. It is now read-only.

Commit

Permalink
maven release changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vikram-chaitanya committed Aug 7, 2021
1 parent 34ff9e4 commit bb2f1c6
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion pom.xml
Expand Up @@ -2,12 +2,13 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.testsigma.kibbutz.archetypes</groupId>
<groupId>com.testsigma</groupId>
<artifactId>kibbutz-plugin-archetype</artifactId>
<version>1.0.0</version>
<name>kibbutz-plugin-archetype</name>
<packaging>maven-archetype</packaging>
<description>Archetype used to generate Testsigma SDK Plugin</description>
<url>https://github.com/TestsigmaInc/kibbutz-addon-archetype</url>

<licenses>
<license>
Expand Down Expand Up @@ -97,6 +98,18 @@
<version>3.141.59</version>
</dependency>
</dependencies>

<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -125,6 +138,31 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
Expand Down

0 comments on commit bb2f1c6

Please sign in to comment.