Use proper version property for dependencies
Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/41734c11 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/41734c11 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/41734c11 Branch: refs/heads/master Commit: 41734c11003c59f705e527c549ef42dabe898fb0 Parents: 485cfd2 Author: Hadrian Zbarcea <[email protected]> Authored: Mon Jul 13 13:05:51 2015 -0400 Committer: Hadrian Zbarcea <[email protected]> Committed: Mon Jul 13 13:05:51 2015 -0400 ---------------------------------------------------------------------- core/pom.xml | 6 +++--- sandbox/nosql/pom.xml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/41734c11/core/pom.xml ---------------------------------------------------------------------- diff --git a/core/pom.xml b/core/pom.xml index b0b3e6d..1c8565a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -51,17 +51,17 @@ <dependency> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-utils-groovy</artifactId> - <version>${brooklyn.version}</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.brooklyn.camp</groupId> <artifactId>camp-base</artifactId> - <version>${brooklyn.version}</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.brooklyn.camp</groupId> <artifactId>camp-base</artifactId> - <version>${brooklyn.version}</version> + <version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/41734c11/sandbox/nosql/pom.xml ---------------------------------------------------------------------- diff --git a/sandbox/nosql/pom.xml b/sandbox/nosql/pom.xml index 0e20d5a..147c93f 100644 --- a/sandbox/nosql/pom.xml +++ b/sandbox/nosql/pom.xml @@ -52,7 +52,7 @@ <dependency> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-core</artifactId> - <version>${brooklyn.version}</version> + <version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> @@ -66,13 +66,13 @@ <dependency> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-test-support</artifactId> - <version>${brooklyn.version}</version> + <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.brooklyn</groupId> <artifactId>brooklyn-locations-jclouds</artifactId> - <version>${brooklyn.version}</version> + <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies>
