This is an automated email from the ASF dual-hosted git repository. jgallimore pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 1e7e58f13c488950d555c3e42223a6880bb81ae6 Author: Jonathan Gallimore <[email protected]> AuthorDate: Tue Jun 25 11:01:06 2019 +0100 TOMEE-2546 use TomEE version property --- examples/mp-metrics-counted/pom.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/mp-metrics-counted/pom.xml b/examples/mp-metrics-counted/pom.xml index 50f00c6..bad4ce5 100644 --- a/examples/mp-metrics-counted/pom.xml +++ b/examples/mp-metrics-counted/pom.xml @@ -34,6 +34,7 @@ <junit.version>4.12</junit.version> <docker.image.name>tomee/${project.artifactId}</docker.image.name> <docker.file.name>Dockerfile</docker.file.name> + <tomee.version>8.0.0-SNAPSHOT</tomee.version> </properties> <dependencies> @@ -58,7 +59,7 @@ <dependency> <groupId>org.apache.tomee</groupId> <artifactId>openejb-cxf-rs</artifactId> - <version>${project.version}</version> + <version>${tomee.version}</version> <scope>test</scope> </dependency> <dependency> @@ -70,13 +71,13 @@ <dependency> <groupId>org.apache.tomee</groupId> <artifactId>arquillian-tomee-remote</artifactId> - <version>${project.version}</version> + <version>${tomee.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.tomee</groupId> <artifactId>apache-tomee</artifactId> - <version>${project.version}</version> + <version>${tomee.version}</version> <type>zip</type> <classifier>microprofile</classifier> <scope>test</scope> @@ -88,7 +89,7 @@ <plugin> <groupId>org.apache.tomee.maven</groupId> <artifactId>tomee-maven-plugin</artifactId> - <version>${project.version}</version> + <version>${tomee.version}</version> <configuration> <tomeeClassifier>microprofile</tomeeClassifier> <context>${project.artifactId}</context>
