diff options
-rw-r--r-- | robotframework-onap/pom.xml | 9 | ||||
-rw-r--r-- | version.properties | 14 |
2 files changed, 15 insertions, 8 deletions
diff --git a/robotframework-onap/pom.xml b/robotframework-onap/pom.xml index 8c6c05b..6f8cc1d 100644 --- a/robotframework-onap/pom.xml +++ b/robotframework-onap/pom.xml @@ -56,15 +56,8 @@ <goal>process-sources</goal> </goals> </execution> - <execution> - <id>deploy</id> - <goals> - <goal>deploy</goal> - </goals> - </execution> </executions> - <configuration> - <repository>${python.pypi.repository}</repository> + <configuration> <sourceDirectory>${python.sourceDirectory}</sourceDirectory> </configuration> </plugin> diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..b69e8d0 --- /dev/null +++ b/version.properties @@ -0,0 +1,14 @@ +# 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=4 +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 +tags=latest ${base_version}-STAGING-latest |