diff options
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | version.properties | 13 |
2 files changed, 15 insertions, 2 deletions
@@ -4,7 +4,7 @@ <groupId>org.openecomp</groupId> <artifactId>router-core</artifactId> <packaging>bundle</packaging> - <version>1.0.0-SNAPSHOT</version> + <version>1.1.0-SNAPSHOT</version> <name>Core Data Router Components</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -190,4 +190,4 @@ <url>${nexusproxy}/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> -</project>
\ No newline at end of file +</project> diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..7f86aa1 --- /dev/null +++ b/version.properties @@ -0,0 +1,13 @@ +# Versioning variables +# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... ) +# because they are used in Jenkins, whose plug-in doesn't support + +major=1 +minor=1 +patch=0 + +base_version=${major}.${minor}.${patch} + +# Release must be completed with git revision # in Jenkins +release_version=${base_version} +snapshot_version=${base_version}-SNAPSHOT |