Skip to content

Commit

Permalink
MOSIP-37901: esignet-services-release
Browse files Browse the repository at this point in the history
Signed-off-by: nagendra0721 <[email protected]>
  • Loading branch information
nagendra0721 committed Jan 31, 2025
1 parent a9e437d commit 2633ff9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions esignet-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
<jackson.databind>2.12.0</jackson.databind>
<fasterxml.jackson.module.jsr310.version>2.12.0</fasterxml.jackson.module.jsr310.version>
<fasterxml.jackson.module.afterburner.version>2.12.0</fasterxml.jackson.module.afterburner.version>
<maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version>
<nexus.staging.maven.plugin.version>1.6.14</nexus.staging.maven.plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -107,6 +109,45 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>default-deploy</id>
<phase>none</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus.staging.maven.plugin.version}</version>
<extensions>true</extensions>
<executions>
<execution>
<id>default-deploy</id>
<phase>none</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 2633ff9

Please sign in to comment.