You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2022/02/15 15:27:00 UTC

[tomee] 01/04: Test TomEE version replacement

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 81a357a8ce8db58d64ede5a6e1c3f66018f05a27
Author: Jonathan Gallimore <jo...@jrg.me.uk>
AuthorDate: Tue Feb 8 11:48:19 2022 +0000

    Test TomEE version replacement
---
 docs/arquillian-available-adapters.adoc | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/arquillian-available-adapters.adoc b/docs/arquillian-available-adapters.adoc
index f4cc562..845ac9f 100644
--- a/docs/arquillian-available-adapters.adoc
+++ b/docs/arquillian-available-adapters.adoc
@@ -98,23 +98,23 @@ dependencies to your Maven pom.xml:
 <dependency>
   <groupId>org.apache.tomee</groupId>
   <artifactId>arquillian-tomee-embedded</artifactId>
-  <version>8.0.4</version> <!--Current version-->
+  <version>${tomee.version}</version> <!--Current version-->
 </dependency>
 <dependency>
   <groupId>org.apache.tomee</groupId>
   <artifactId>tomee-embedded</artifactId>
-  <version>8.0.4</version>
+  <version>${tomee.version}</version>
 </dependency>
 <!--Required for WebServices and RESTful WebServices-->
 <dependency>
   <groupId>org.apache.tomee</groupId>
   <artifactId>tomee-webservices</artifactId>
-  <version>8.0.4</version>
+  <version>${tomee.version}</version>
 </dependency>
 <dependency>
   <groupId>org.apache.tomee</groupId>
   <artifactId>tomee-jaxrs</artifactId>
-  <version>8.0.4</version>
+  <version>${tomee.version}</version>
 </dependency>
 ----
 
@@ -160,7 +160,7 @@ The following shows a typical configuration for testing against TomEE
 [source,xml]
 ----
 <properties>
-  <tomee.version>8.0.4</tomee.version>
+  <tomee.version>${tomee.version}</tomee.version>
   <tomee.classifier>webprofile</tomee.classifier>
 </properties>
 <build>
@@ -238,7 +238,7 @@ with `-Ptomee-webprofile-remote` specified as a `mvn` command argument.
       <dependency>
         <groupId>org.apache.tomee</groupId>
         <artifactId>arquillian-tomee-embedded</artifactId>
-        <version>8.0.4</version>
+        <version>${tomee.version}</version>
       </dependency>
     </dependencies>
   </profile>
@@ -246,7 +246,7 @@ with `-Ptomee-webprofile-remote` specified as a `mvn` command argument.
   <profile>
     <id>tomee-webprofile-remote</id>
     <properties>
-      <tomee.version>8.0.4</tomee.version>
+      <tomee.version>${tomee.version}</tomee.version>
       <tomee.classifier>webprofile</tomee.classifier>
     </properties>
     <build>
@@ -282,7 +282,7 @@ with `-Ptomee-webprofile-remote` specified as a `mvn` command argument.
   <profile>
     <id>tomee-plus-remote</id>
     <properties>
-      <tomee.version>8.0.4</tomee.version>
+      <tomee.version>${tomee.version}</tomee.version>
       <tomee.classifier>plus</tomee.classifier>
     </properties>
     <build>