Test with new version.

This commit is contained in:
2019-08-13 22:03:19 +02:00
parent b62da6b00f
commit 87ac9cce7d
4 changed files with 6 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ pipeline {
stage('Clone Minager-properties repository') {
steps {
dir('minager-properties') {
git url:'https://gogs.takiguchi.ovh/Minager/minager-properties.git', branch: 'master', credentialsId: 'a6494064-8130-42fd-9d3d-e7734518c79e'
git url:'https://gogs.takiguchi.ovh/Minager/minager-properties.git', branch: 'do-release', credentialsId: 'a6494064-8130-42fd-9d3d-e7734518c79e'
}
}
}

View File

@@ -5,7 +5,7 @@
<groupId>org.minager</groupId>
<artifactId>minager</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Minager</name>

View File

@@ -37,7 +37,9 @@ setVersion $RELEASE_VERSION
echo 'Git tag for release freezing'
git tag $RELEASE_VERSION
cd minager-properties && git tag $RELEASE_VERSION && cd ..
cd minager-properties || exit 1
git tag $RELEASE_VERSION || exit 1
cd .. || exit 1
echo 'Change files to next version'
setVersion $NEXT_VERSION

View File

@@ -1,5 +1,5 @@
export const environment = {
production: true,
appVersion: '1.2.0',
appVersion: '1.3.0-SNAPSHOT',
title: ''
};