You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jl...@apache.org on 2019/07/22 13:07:07 UTC

[tomee] 08/31: Revert "TOMEE-2354 - Moved TomEE Plus tests execution to a separate build profile."

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

jlmonteiro pushed a commit to branch tomee8-java11
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 0c7379218c937732615f7cdd2cab7177f40186b4
Author: Jonathan Gallimore <jo...@jrg.me.uk>
AuthorDate: Wed Dec 19 01:22:40 2018 +0000

    Revert "TOMEE-2354 - Moved TomEE Plus tests execution to a separate build profile."
    
    This reverts commit 9523e8755b0e8713e1466fa10b2b83e63e8201cc.
---
 tck/microprofile-tck/config/pom.xml | 49 ++++++++++++++-----------------------
 1 file changed, 19 insertions(+), 30 deletions(-)

diff --git a/tck/microprofile-tck/config/pom.xml b/tck/microprofile-tck/config/pom.xml
index 68f314c..7888f3b 100644
--- a/tck/microprofile-tck/config/pom.xml
+++ b/tck/microprofile-tck/config/pom.xml
@@ -34,9 +34,6 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
         <configuration>
-          <dependenciesToScan>
-            <dependency>org.eclipse.microprofile.config:microprofile-config-tck</dependency>
-          </dependenciesToScan>
           <environmentVariables>
             <my_int_property>45</my_int_property>
             <MY_BOOLEAN_PROPERTY>true</MY_BOOLEAN_PROPERTY>
@@ -50,39 +47,31 @@
             <goals>
               <goal>test</goal>
             </goals>
+            <configuration>
+              <dependenciesToScan>
+                <dependency>org.eclipse.microprofile.config:microprofile-config-tck</dependency>
+              </dependenciesToScan>
+            </configuration>
+          </execution>
+          <execution>
+            <id>tomee-plus</id>
+            <goals>
+              <goal>test</goal>
+            </goals>
+            <configuration>
+              <dependenciesToScan>
+                <dependency>org.eclipse.microprofile.config:microprofile-config-tck</dependency>
+              </dependenciesToScan>
+              <systemPropertyVariables>
+                <arquillian.launch>tomee-plus</arquillian.launch>
+              </systemPropertyVariables>
+            </configuration>
           </execution>
         </executions>
       </plugin>
     </plugins>
   </build>
 
-  <profiles>
-    <profile>
-      <id>mp-tck-all</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>tomee-plus</id>
-                <goals>
-                  <goal>test</goal>
-                </goals>
-                <configuration>
-                  <systemPropertyVariables>
-                    <arquillian.launch>tomee-plus</arquillian.launch>
-                  </systemPropertyVariables>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-
   <dependencies>
     <dependency>
       <groupId>${project.groupId}</groupId>