Skip to content

Commit 20b8ad0

Browse files
authored
Merge branch 'release-1.3.x' into dev-1.3.x
2 parents 9ffc6f7 + 6bbb7f9 commit 20b8ad0

File tree

4 files changed

+165
-1
lines changed

4 files changed

+165
-1
lines changed

admin/admin-service/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
<maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
3232
<mosip.biometric.util.version>1.3.0-beta.1</mosip.biometric.util.version>
3333
<mosip.openid.bridge.version>1.3.0-beta.1</mosip.openid.bridge.version>
34+
<maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version>
35+
<nexus.staging.maven.plugin.version>1.6.14</nexus.staging.maven.plugin.version>
3436
</properties>
3537
<dependencyManagement>
3638
<dependencies>
@@ -372,6 +374,45 @@
372374
<skip>false</skip>
373375
</configuration>
374376
</plugin>
377+
<plugin>
378+
<artifactId>maven-deploy-plugin</artifactId>
379+
<version>${maven.deploy.plugin.version}</version>
380+
<configuration>
381+
<skip>true</skip>
382+
</configuration>
383+
<executions>
384+
<execution>
385+
<id>default-deploy</id>
386+
<phase>none</phase>
387+
<goals>
388+
<goal>deploy</goal>
389+
</goals>
390+
<configuration>
391+
<skip>true</skip>
392+
</configuration>
393+
</execution>
394+
</executions>
395+
</plugin>
396+
<plugin>
397+
<groupId>org.sonatype.plugins</groupId>
398+
<artifactId>nexus-staging-maven-plugin</artifactId>
399+
<version>${nexus.staging.maven.plugin.version}</version>
400+
<extensions>true</extensions>
401+
<executions>
402+
<execution>
403+
<id>default-deploy</id>
404+
<phase>none</phase>
405+
<goals>
406+
<goal>deploy</goal>
407+
</goals>
408+
</execution>
409+
</executions>
410+
<configuration>
411+
<serverId>ossrh</serverId>
412+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
413+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
414+
</configuration>
415+
</plugin>
375416
</plugins>
376417
</build>
377418
</profile>

admin/hotlist-service/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
<kernel-websubclient-api.version>1.3.0-beta.1</kernel-websubclient-api.version>
3333
<kernel-logger-logback.version>1.3.0-beta.1</kernel-logger-logback.version>
3434
<kernel.auth.adaptor.version>1.3.0-beta.1</kernel.auth.adaptor.version>
35+
<maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version>
36+
<nexus.staging.maven.plugin.version>1.6.14</nexus.staging.maven.plugin.version>
3537
</properties>
3638

3739
<repositories>
@@ -467,6 +469,45 @@
467469
<skip>false</skip>
468470
</configuration>
469471
</plugin>
472+
<plugin>
473+
<artifactId>maven-deploy-plugin</artifactId>
474+
<version>${maven.deploy.plugin.version}</version>
475+
<configuration>
476+
<skip>true</skip>
477+
</configuration>
478+
<executions>
479+
<execution>
480+
<id>default-deploy</id>
481+
<phase>none</phase>
482+
<goals>
483+
<goal>deploy</goal>
484+
</goals>
485+
<configuration>
486+
<skip>true</skip>
487+
</configuration>
488+
</execution>
489+
</executions>
490+
</plugin>
491+
<plugin>
492+
<groupId>org.sonatype.plugins</groupId>
493+
<artifactId>nexus-staging-maven-plugin</artifactId>
494+
<version>${nexus.staging.maven.plugin.version}</version>
495+
<extensions>true</extensions>
496+
<executions>
497+
<execution>
498+
<id>default-deploy</id>
499+
<phase>none</phase>
500+
<goals>
501+
<goal>deploy</goal>
502+
</goals>
503+
</execution>
504+
</executions>
505+
<configuration>
506+
<serverId>ossrh</serverId>
507+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
508+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
509+
</configuration>
510+
</plugin>
470511
</plugins>
471512
</build>
472513
</profile>

admin/kernel-masterdata-service/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@
114114
<kernel.websubclient.api.version>1.3.0-beta.1</kernel.websubclient.api.version>
115115
<kernel.core.version>1.3.0-beta.1</kernel.core.version>
116116
<mosip.openid.bridge.version>1.3.0-beta.1</mosip.openid.bridge.version>
117+
<maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version>
118+
<nexus.staging.maven.plugin.version>1.6.14</nexus.staging.maven.plugin.version>
117119
</properties>
118120

119121
<repositories>
@@ -431,6 +433,45 @@
431433
<format>json</format>
432434
</configuration>
433435
</plugin>
436+
<plugin>
437+
<artifactId>maven-deploy-plugin</artifactId>
438+
<version>${maven.deploy.plugin.version}</version>
439+
<configuration>
440+
<skip>true</skip>
441+
</configuration>
442+
<executions>
443+
<execution>
444+
<id>default-deploy</id>
445+
<phase>none</phase>
446+
<goals>
447+
<goal>deploy</goal>
448+
</goals>
449+
<configuration>
450+
<skip>true</skip>
451+
</configuration>
452+
</execution>
453+
</executions>
454+
</plugin>
455+
<plugin>
456+
<groupId>org.sonatype.plugins</groupId>
457+
<artifactId>nexus-staging-maven-plugin</artifactId>
458+
<version>${nexus.staging.maven.plugin.version}</version>
459+
<extensions>true</extensions>
460+
<executions>
461+
<execution>
462+
<id>default-deploy</id>
463+
<phase>none</phase>
464+
<goals>
465+
<goal>deploy</goal>
466+
</goals>
467+
</execution>
468+
</executions>
469+
<configuration>
470+
<serverId>ossrh</serverId>
471+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
472+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
473+
</configuration>
474+
</plugin>
434475
</plugins>
435476
</build>
436477
<scm>

admin/kernel-syncdata-service/pom.xml

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@
8888
<kernel.crypto.version>1.3.0-beta.1</kernel.crypto.version>
8989
<kernel.keymanager.version>1.3.0-beta.1</kernel.keymanager.version>
9090
<kernel-websubclient-api.version>1.3.0-beta.1</kernel-websubclient-api.version>
91+
<maven.deploy.plugin.version>3.1.1</maven.deploy.plugin.version>
92+
<nexus.staging.maven.plugin.version>1.6.14</nexus.staging.maven.plugin.version>
9193
</properties>
9294

9395
<repositories>
@@ -428,7 +430,46 @@
428430
<!-- <format>json</format> -->
429431
</configuration>
430432
</plugin>
431-
</plugins>
433+
<plugin>
434+
<artifactId>maven-deploy-plugin</artifactId>
435+
<version>${maven.deploy.plugin.version}</version>
436+
<configuration>
437+
<skip>true</skip>
438+
</configuration>
439+
<executions>
440+
<execution>
441+
<id>default-deploy</id>
442+
<phase>none</phase>
443+
<goals>
444+
<goal>deploy</goal>
445+
</goals>
446+
<configuration>
447+
<skip>true</skip>
448+
</configuration>
449+
</execution>
450+
</executions>
451+
</plugin>
452+
<plugin>
453+
<groupId>org.sonatype.plugins</groupId>
454+
<artifactId>nexus-staging-maven-plugin</artifactId>
455+
<version>${nexus.staging.maven.plugin.version}</version>
456+
<extensions>true</extensions>
457+
<executions>
458+
<execution>
459+
<id>default-deploy</id>
460+
<phase>none</phase>
461+
<goals>
462+
<goal>deploy</goal>
463+
</goals>
464+
</execution>
465+
</executions>
466+
<configuration>
467+
<serverId>ossrh</serverId>
468+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
469+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
470+
</configuration>
471+
</plugin>
472+
</plugins>
432473
</build>
433474
<scm>
434475
<connection>scm:git:git://github.com/mosip/commons.git</connection>

0 commit comments

Comments
 (0)