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 34a38ff185d101b04967630ba23faa5cb4f0c48f Author: Jonathan Gallimore <[email protected]> AuthorDate: Tue Jun 25 10:44:46 2019 +0100 TOMEE-2546 use TomEE version property --- examples/mp-custom-healthcheck/pom.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/mp-custom-healthcheck/pom.xml b/examples/mp-custom-healthcheck/pom.xml index c9b3b63..664f0e3 100644 --- a/examples/mp-custom-healthcheck/pom.xml +++ b/examples/mp-custom-healthcheck/pom.xml @@ -16,6 +16,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> @@ -60,13 +61,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> @@ -78,7 +79,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>
