diff options
author | Carsten Lund <lund@research.att.com> | 2017-02-26 12:17:33 +0000 |
---|---|---|
committer | Carsten Lund <lund@research.att.com> | 2017-02-26 12:17:33 +0000 |
commit | 5f351c2aab026728703fa2fd9d3af3141c39c7f4 (patch) | |
tree | 710bc8aa8bf65c5f4db4eeb4f286eddbc3094a0e | |
parent | 52d708e058131dfe7806968372f9e5b0a5034fc1 (diff) |
Fixes POMs for release job
Change-Id: Id60b25b93f2a733ab0c038433d95b49da91e6355
Signed-off-by: Carsten Lund <lund@research.att.com>
-rw-r--r-- | pom.xml | 34 | ||||
-rw-r--r-- | version.properties | 11 |
2 files changed, 11 insertions, 34 deletions
@@ -16,43 +16,9 @@ - <pluginRepositories> - <!-- Black Duck plugin dependencies --> - <pluginRepository> - <id>JCenter</id> - <name>JCenter Repository</name> - <url>http://jcenter.bintray.com</url> - </pluginRepository> - - <pluginRepository> - <id>Restlet</id> - <name>Restlet Repository</name> - <url>http://maven.restlet.com</url> - </pluginRepository> - </pluginRepositories> <build> <plugins> - <!-- blackduck maven plugin --> - <plugin> - <groupId>com.blackducksoftware.integration</groupId> - <artifactId>hub-maven-plugin</artifactId> - <version>1.4.0</version> - <inherited>false</inherited> - <configuration> - <hubProjectName>${project.name}</hubProjectName> - <outputDirectory>${project.basedir}</outputDirectory> - </configuration> - <executions> - <execution> - <id>create-bdio-file</id> - <phase>package</phase> - <goals> - <goal>createHubOutput</goal> - </goals> - </execution> - </executions> - </plugin> <!-- site maven plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> diff --git a/version.properties b/version.properties new file mode 100644 index 0000000..c0f2742 --- /dev/null +++ b/version.properties @@ -0,0 +1,11 @@ +# 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=0 +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 |