You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2022/02/05 19:36:32 UTC

[maven-reporting-impl] branch master updated: Remove old Maven 2 profile

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

michaelo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-reporting-impl.git


The following commit(s) were added to refs/heads/master by this push:
     new 6554ad3  Remove old Maven 2 profile
6554ad3 is described below

commit 6554ad35fb05b17d283e4bdfb81226c1d5e701f0
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sat Feb 5 20:36:25 2022 +0100

    Remove old Maven 2 profile
---
 src/it/setup-reporting-plugin/pom.xml | 32 --------------------------------
 1 file changed, 32 deletions(-)

diff --git a/src/it/setup-reporting-plugin/pom.xml b/src/it/setup-reporting-plugin/pom.xml
index 03fad4e..744f21f 100644
--- a/src/it/setup-reporting-plugin/pom.xml
+++ b/src/it/setup-reporting-plugin/pom.xml
@@ -101,36 +101,4 @@ under the License.
       </plugin>
     </plugins>
   </build>
-
-  <profiles>
-    <profile>
-      <id>maven-2</id><!-- only necessary to build with Maven 2 -->
-      <activation>
-        <file>
-          <!--  This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
-          <missing>${basedir}</missing>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-plugin-plugin</artifactId>
-            <configuration>
-              <!-- see http://jira.codehaus.org/browse/MNG-5346 -->
-              <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
-            </configuration>
-            <executions>
-              <execution>
-                <id>mojo-descriptor</id>
-                <goals><!-- Maven 2 does not support phase overriding: need to add an execution -->
-                  <goal>descriptor</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>    
-  </profiles>
 </project>