Skip to content

Commit 21f67f4

Browse files
authored
Merge pull request #506 from mosip/release-branch
Release changes
2 parents bf90626 + 26b4057 commit 21f67f4

10 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/push_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
mvn -B -U package -s $GITHUB_WORKSPACE/settings.xml --file pom.xml
162162
- name: Publish the maven package
163163
run: |
164-
cd registration && mvn deploy -DaltDeploymentRepository=ossrh::default::${{ secrets.OSSRH_SNAPSHOT_URL }} -s $GITHUB_WORKSPACE/settings.xml -f pom.xml
164+
cd registration && mvn deploy -DaltDeploymentRepository=ossrh::default::${{ secrets.RELEASE_URL }} -s $GITHUB_WORKSPACE/settings.xml -f pom.xml
165165
env:
166166
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
167167
GPG_TTY: $(tty)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Maven Package upon a push](https://github.com/mosip/registration-client/actions/workflows/push_trigger.yml/badge.svg?branch=master)](https://github.com/mosip/registration-client/actions/workflows/push_trigger.yml)
2-
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?branch=master&project=mosip_registration&metric=alert_status)](https://sonarcloud.io/dashboard?branch=master&id=mosip_registration)
1+
[![Maven Package upon a push](https://github.com/mosip/registration-client/actions/workflows/push_trigger.yml/badge.svg?branch=release-1.2.0.1)](https://github.com/mosip/registration-client/actions/workflows/push_trigger.yml)
2+
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?branch=release-1.2.0.1&project=mosip_registration&metric=alert_status)](https://sonarcloud.io/dashboard?branch=release-1.2.0.1&id=mosip_registration)
33

44
## Overview
55

registration/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<!--<parent>
88
<groupId>io.mosip</groupId>
99
<artifactId>registration</artifactId>
10-
<version>1.2.0.1-SNAPSHOT</version>
10+
<version>1.2.0.1-B1</version>
1111
</parent>-->
1212

1313
<groupId>io.mosip.registration</groupId>
14-
<version>1.2.0.1-SNAPSHOT</version>
14+
<version>1.2.0.1-B1</version>
1515
<artifactId>registration-client-parent</artifactId>
1616
<packaging>pom</packaging>
1717
<name>MOSIP Registration Client</name>
@@ -106,7 +106,7 @@
106106
<jackson.version>2.10.1</jackson.version>
107107
<jackson.mapper.asl.version>1.7.1</jackson.mapper.asl.version>
108108

109-
<mosip.core.kernel.version>1.2.0.1-SNAPSHOT</mosip.core.kernel.version>
109+
<mosip.core.kernel.version>1.2.0.1-B1</mosip.core.kernel.version>
110110
<mosip.kernel.virusscanner.version>1.1.3</mosip.kernel.virusscanner.version>
111111
<!-- Derby Version -->
112112
<apache.derby.version>10.13.1.1</apache.derby.version>

registration/ref-impl/ref-document-scanner/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.mosip.registration</groupId>
88
<artifactId>ref-document-scanner</artifactId>
9-
<version>1.2.0.1-SNAPSHOT</version>
9+
<version>1.2.0.1-B1</version>
1010

1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>io.mosip.registration</groupId>
2222
<artifactId>registration-api</artifactId>
23-
<version>1.2.0.1-SNAPSHOT</version>
23+
<version>1.2.0.1-B1</version>
2424
<scope>compile</scope>
2525
</dependency>
2626

registration/ref-impl/ref-geoposition-rxtx/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.mosip.registration</groupId>
88
<artifactId>ref-geoposition-rxtx</artifactId>
9-
<version>1.2.0.1-SNAPSHOT</version>
9+
<version>1.2.0.1-B1</version>
1010

1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>io.mosip.registration</groupId>
2222
<artifactId>registration-api</artifactId>
23-
<version>1.2.0.1-SNAPSHOT</version>
23+
<version>1.2.0.1-B1</version>
2424
<scope>compile</scope>
2525
</dependency>
2626

registration/registration-api-stub-impl/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
<groupId>io.mosip.registration</groupId>
88
<artifactId>registration-api-stub-impl</artifactId>
9-
<version>1.2.0.1-SNAPSHOT</version>
9+
<version>1.2.0.1-B1</version>
1010

1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>
1313
<maven.compiler.target>11</maven.compiler.target>
1414
<spring.version>5.0.6.RELEASE</spring.version>
1515
<mosip.core.kernel.version>1.2.0</mosip.core.kernel.version>
16-
<mosip.registration.api.version>1.2.0.1-SNAPSHOT</mosip.registration.api.version>
16+
<mosip.registration.api.version>1.2.0.1-B1</mosip.registration.api.version>
1717
</properties>
1818

1919
<dependencies>

registration/registration-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.mosip.registration</groupId>
88
<artifactId>registration-api</artifactId>
9-
<version>1.2.0.1-SNAPSHOT</version>
9+
<version>1.2.0.1-B1</version>
1010

1111
<properties>
1212
<maven.compiler.source>11</maven.compiler.source>

registration/registration-client/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<parent>
88
<groupId>io.mosip.registration</groupId>
99
<artifactId>registration-client-parent</artifactId>
10-
<version>1.2.0.1-SNAPSHOT</version>
10+
<version>1.2.0.1-B1</version>
1111
</parent>
1212

1313
<artifactId>registration-client</artifactId>
1414
<packaging>jar</packaging>
15-
<version>1.2.0.1-SNAPSHOT</version>
15+
<version>1.2.0.1-B1</version>
1616
<name>registration-client</name>
1717
<description>Maven project of MOSIP Registration UI</description>
1818

@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>io.mosip.registration</groupId>
2424
<artifactId>registration-services</artifactId>
25-
<version>1.2.0.1-SNAPSHOT</version>
25+
<version>1.2.0.1-B1</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>org.springframework</groupId>

registration/registration-services/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>io.mosip.registration</groupId>
88
<artifactId>registration-client-parent</artifactId>
9-
<version>1.2.0.1-SNAPSHOT</version>
9+
<version>1.2.0.1-B1</version>
1010
</parent>
1111
<artifactId>registration-services</artifactId>
1212
<name>registration-services</name>
1313
<description>Maven project of MOSIP Registration Service</description>
14-
<version>1.2.0.1-SNAPSHOT</version>
14+
<version>1.2.0.1-B1</version>
1515

1616
<dependencies>
1717
<!-- Lombok -->

registration/registration-test/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<parent>
44
<groupId>io.mosip.registration</groupId>
55
<artifactId>registration-client-parent</artifactId>
6-
<version>1.2.0.1-SNAPSHOT</version>
6+
<version>1.2.0.1-B1</version>
77
</parent>
88
<artifactId>registration-test</artifactId>
99
<name>registration-test</name>
1010
<description>Maven project of MOSIP Registration Test</description>
11-
<version>1.2.0.1-SNAPSHOT</version>
11+
<version>1.2.0.1-B1</version>
1212

1313
<properties>
1414
<maven.compiler.source>11</maven.compiler.source>
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>io.mosip.registration</groupId>
6868
<artifactId>registration-client</artifactId>
69-
<version>1.2.0.1-SNAPSHOT</version>
69+
<version>1.2.0.1-B1</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>

0 commit comments

Comments
 (0)