You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2021/01/08 00:44:39 UTC

[cxf] branch master updated: Added Maven profile to run tests using any JDK

This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/master by this push:
     new 12a70c8  Added Maven profile to run tests using any JDK
12a70c8 is described below

commit 12a70c867e88379c520c64882ca2b261b9e9559d
Author: reta <dr...@gmail.com>
AuthorDate: Thu Jan 7 19:43:59 2021 -0500

    Added Maven profile to run tests using any JDK
---
 parent/pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index f82639e..1fc5ef6 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -2387,10 +2387,10 @@
             </properties>
         </profile>
         <profile>
-            <id>test-on-latest</id>
+            <id>test-on-jdk</id>
             <activation>
                 <property>
-                    <name>test-on-latest</name>
+                    <name>test-on</name>
                 </property>
             </activation>
             <build>
@@ -2400,7 +2400,7 @@
                         <artifactId>maven-surefire-plugin</artifactId>
                         <configuration>
                             <jdkToolchain>
-                                <version>15</version>
+                                <version>${test-on}</version>
                             </jdkToolchain>
                         </configuration>
                     </plugin>