Replace project.version value with environment variable for dcs and rest This causes warnings from maven, but is consistent with practice in other pom files in trafodion tree to keep release version the same in multiple components.
Project: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/commit/0ea3810b Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/tree/0ea3810b Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafodion/diff/0ea3810b Branch: refs/heads/master Commit: 0ea3810b489de3fcafddfb06d4f09d4d23571901 Parents: aebe120 Author: Steve Varnau <[email protected]> Authored: Fri Nov 13 00:22:55 2015 +0000 Committer: Steve Varnau <[email protected]> Committed: Fri Nov 13 00:22:55 2015 +0000 ---------------------------------------------------------------------- core/rest/pom.xml | 2 +- dcs/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/0ea3810b/core/rest/pom.xml ---------------------------------------------------------------------- diff --git a/core/rest/pom.xml b/core/rest/pom.xml index 5aca2b8..47216cb 100644 --- a/core/rest/pom.xml +++ b/core/rest/pom.xml @@ -33,7 +33,7 @@ <groupId>org.trafodion</groupId> <artifactId>rest</artifactId> <packaging>jar</packaging> - <version>2.0.0</version> + <version>${env.TRAFODION_VER}</version> <name>rest</name> <url>http://wiki.trafodion.org</url> http://git-wip-us.apache.org/repos/asf/incubator-trafodion/blob/0ea3810b/dcs/pom.xml ---------------------------------------------------------------------- diff --git a/dcs/pom.xml b/dcs/pom.xml index bd924c3..34c5c15 100644 --- a/dcs/pom.xml +++ b/dcs/pom.xml @@ -34,7 +34,7 @@ <groupId>org.trafodion</groupId> <artifactId>dcs</artifactId> <packaging>jar</packaging> - <version>2.0.0</version> + <version>${env.TRAFODION_VER}</version> <name>dcs</name> <url>http://wiki.trafodion.org</url>
