diff options
Diffstat (limited to 'samples')
-rw-r--r-- | samples/interfaces/mapping/pom.xml | 9 | ||||
-rw-r--r-- | samples/minimal-distribution/pom.xml | 6 |
2 files changed, 9 insertions, 6 deletions
diff --git a/samples/interfaces/mapping/pom.xml b/samples/interfaces/mapping/pom.xml index 5cd903acd..d5f6b07ad 100644 --- a/samples/interfaces/mapping/pom.xml +++ b/samples/interfaces/mapping/pom.xml @@ -30,6 +30,7 @@ <properties> <guice.version>4.1.0</guice.version> <guice.config.version>1.2.0</guice.config.version> + <honeycomb.infra.version>1.0.0-SNAPSHOT</honeycomb.infra.version> </properties> <dependencies> @@ -58,22 +59,22 @@ <dependency> <groupId>io.fd.honeycomb</groupId> <artifactId>translate-impl</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>${honeycomb.infra.version}</version> </dependency> <dependency> <groupId>io.fd.honeycomb</groupId> <artifactId>translate-api</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>${honeycomb.infra.version}</version> </dependency> <dependency> <groupId>io.fd.honeycomb</groupId> <artifactId>notification-api</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>${honeycomb.infra.version}</version> </dependency> <dependency> <groupId>io.fd.honeycomb</groupId> <artifactId>cfg-init</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>${honeycomb.infra.version}</version> </dependency> </dependencies> </project> diff --git a/samples/minimal-distribution/pom.xml b/samples/minimal-distribution/pom.xml index 900d66ae9..5592b981c 100644 --- a/samples/minimal-distribution/pom.xml +++ b/samples/minimal-distribution/pom.xml @@ -30,6 +30,8 @@ <properties> <exec.parameters>-Xms128m -Xmx128m</exec.parameters> <main.class>io.fd.honeycomb.samples.distro.Main</main.class> + <interfaces.mapping.version>1.0.0-SNAPSHOT</interfaces.mapping.version> + <honeycomb.min.distro.version>1.0.0-SNAPSHOT</honeycomb.min.distro.version> </properties> <build> @@ -59,12 +61,12 @@ <dependency> <groupId>io.fd.honeycomb.samples.interfaces</groupId> <artifactId>interfaces-mapping</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>${interfaces.mapping.version}</version> </dependency> <dependency> <groupId>io.fd.honeycomb</groupId> <artifactId>minimal-distribution</artifactId> - <version>1.0.0-SNAPSHOT</version> + <version>${honeycomb.min.distro.version}</version> </dependency> </dependencies> |