Skip to content

Commit

Permalink
MOSIP-37901: admin-services-release (#1168)
Browse files Browse the repository at this point in the history
Signed-off-by: nagendra0721 <[email protected]>
  • Loading branch information
nagendra0721 authored Jan 31, 2025
1 parent 0047b84 commit 6bbb7f9
Show file tree
Hide file tree
Showing 4 changed files with 165 additions and 1 deletion.
41 changes: 41 additions & 0 deletions admin/admin-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
<maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
<mosip.biometric.util.version>1.3.0-beta.1</mosip.biometric.util.version>
<mosip.openid.bridge.version>1.3.0-beta.1</mosip.openid.bridge.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>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -372,6 +374,45 @@
<skip>false</skip>
</configuration>
</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>
</profile>
Expand Down
41 changes: 41 additions & 0 deletions admin/hotlist-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
<kernel-websubclient-api.version>1.3.0-beta.1</kernel-websubclient-api.version>
<kernel-logger-logback.version>1.3.0-beta.1</kernel-logger-logback.version>
<kernel.auth.adaptor.version>1.3.0-beta.1</kernel.auth.adaptor.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>

<repositories>
Expand Down Expand Up @@ -467,6 +469,45 @@
<skip>false</skip>
</configuration>
</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>
</profile>
Expand Down
41 changes: 41 additions & 0 deletions admin/kernel-masterdata-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@
<kernel.websubclient.api.version>1.3.0-beta.1</kernel.websubclient.api.version>
<kernel.core.version>1.3.0-beta.1</kernel.core.version>
<mosip.openid.bridge.version>1.3.0-beta.1</mosip.openid.bridge.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>

<repositories>
Expand Down Expand Up @@ -431,6 +433,45 @@
<format>json</format>
</configuration>
</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>
<scm>
Expand Down
43 changes: 42 additions & 1 deletion admin/kernel-syncdata-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@
<kernel.crypto.version>1.3.0-beta.1</kernel.crypto.version>
<kernel.keymanager.version>1.3.0-beta.1</kernel.keymanager.version>
<kernel-websubclient-api.version>1.3.0-beta.1</kernel-websubclient-api.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>

<repositories>
Expand Down Expand Up @@ -428,7 +430,46 @@
<!-- <format>json</format> -->
</configuration>
</plugin>
</plugins>
<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>
<scm>
<connection>scm:git:git://github.com/mosip/commons.git</connection>
Expand Down

0 comments on commit 6bbb7f9

Please sign in to comment.