You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2020/04/16 10:43:16 UTC

[maven-ear-plugin] 06/24: Added some comments within the pom file to explain some of the changes.

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

khmarbaise pushed a commit to branch itf-extension
in repository https://gitbox.apache.org/repos/asf/maven-ear-plugin.git

commit 5cf63c70de26139c5d8d8d43b8e7732a670f2cfb
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sun Oct 27 20:49:27 2019 +0100

    Added some comments within the pom file to explain some of the changes.
---
 pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/pom.xml b/pom.xml
index cdba69a..3f6dda2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -168,6 +168,9 @@
       <version>4.12 </version>
       <scope>test</scope>
     </dependency>
+    <!--
+     ! New maven-it-extension including dependencies needed to write IT tests.
+     -->
     <dependency>
       <groupId>org.apache.maven.jupiter.extension</groupId>
       <artifactId>maven-it-extension</artifactId>
@@ -237,6 +240,9 @@
       </plugins>
     </pluginManagement>
     <plugins>
+      <!--
+       ! Currently based on animal-sniffer of new packages;
+       -->
       <plugin>
         <artifactId>maven-enforcer-plugin</artifactId>
         <configuration>
@@ -300,6 +306,11 @@
               </extraArtifacts>
             </configuration>
             <executions>
+              <!--
+               ! !!Hack!!
+               ! Currently needed to turn off running integration-test part
+               ! and keep only install goal of maven-invoker-plugin.
+               -->
               <execution>
                 <id>integration-test</id>
                 <phase>EMPTY</phase>
@@ -314,6 +325,10 @@
                   <goal>install</goal>
                 </goals>
                 <configuration>
+                  <!--
+                   ! !!Hack!!
+                   ! This location is currently hard coded within the maven-it-extension
+                   -->
                   <localRepositoryPath>${project.build.directory}/invoker-repo</localRepositoryPath>
                 </configuration>
               </execution>