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 23295dc2541b87c8a4e537e78cbf1ca21585ed3c Author: Jonathan Gallimore <[email protected]> AuthorDate: Tue Jun 25 10:47:47 2019 +0100 TOMEE-2546 use TomEE version property --- examples/mp-faulttolerance-fallback/pom.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/mp-faulttolerance-fallback/pom.xml b/examples/mp-faulttolerance-fallback/pom.xml index cc085ea..dee12ea 100644 --- a/examples/mp-faulttolerance-fallback/pom.xml +++ b/examples/mp-faulttolerance-fallback/pom.xml @@ -31,6 +31,7 @@ <junit.version>4.12</junit.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> + <tomee.version>8.0.0-SNAPSHOT</tomee.version> </properties> <dependencies> @@ -55,7 +56,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> @@ -67,13 +68,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> @@ -85,7 +86,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>
