You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2020/04/04 11:13:09 UTC

[sling-org-apache-sling-commons-messaging-mail] branch master updated: execute integration tests with all JDKs

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

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-messaging-mail.git


The following commit(s) were added to refs/heads/master by this push:
     new 8d222f3  execute integration tests with all JDKs
8d222f3 is described below

commit 8d222f3f2d93016c6d1799b39513a57f196b9148
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sat Apr 4 13:12:58 2020 +0200

    execute integration tests with all JDKs
---
 pom.xml | 55 +++++++++++++++++++++----------------------------------
 1 file changed, 21 insertions(+), 34 deletions(-)

diff --git a/pom.xml b/pom.xml
index ecad54d..1a27694 100644
--- a/pom.xml
+++ b/pom.xml
@@ -71,43 +71,30 @@
           </excludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-failsafe-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>integration-test</goal>
+              <goal>verify</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <redirectTestOutputToFile>true</redirectTestOutputToFile>
+          <systemProperties>
+            <property>
+              <name>bundle.filename</name>
+              <value>${basedir}/target/${project.build.finalName}.jar</value>
+            </property>
+          </systemProperties>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
-  <profiles>
-    <profile>
-      <id>it</id>
-      <activation>
-        <jdk>[11.0,)</jdk>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-failsafe-plugin</artifactId>
-            <executions>
-              <execution>
-                <goals>
-                  <goal>integration-test</goal>
-                  <goal>verify</goal>
-                </goals>
-              </execution>
-            </executions>
-            <configuration>
-              <redirectTestOutputToFile>true</redirectTestOutputToFile>
-              <systemProperties>
-                <property>
-                  <name>bundle.filename</name>
-                  <value>${basedir}/target/${project.build.finalName}.jar</value>
-                </property>
-              </systemProperties>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-
   <dependencies>
     <!-- javax/jakarta -->
     <dependency>