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 2019/12/07 10:10:55 UTC

[maven] branch master updated: [MNG-6810] - Remove profiles in maven-model

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 00654c2  [MNG-6810] - Remove profiles in maven-model
00654c2 is described below

commit 00654c2e03a385a4244648339bcd53d036ae42f5
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Dec 7 10:28:19 2019 +0100

    [MNG-6810] - Remove profiles in maven-model
---
 maven-model/pom.xml | 42 ------------------------------------------
 1 file changed, 42 deletions(-)

diff --git a/maven-model/pom.xml b/maven-model/pom.xml
index 43232de..1a853f7 100644
--- a/maven-model/pom.xml
+++ b/maven-model/pom.xml
@@ -82,46 +82,4 @@ under the License.
     </plugins>
   </build>
 
-  <profiles>
-    <profile>
-      <id>all-models</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.codehaus.modello</groupId>
-            <artifactId>modello-maven-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>v3</id>
-                <goals>
-                  <goal>java</goal>
-                  <goal>xpp3-writer</goal>
-                  <goal>xpp3-reader</goal>
-                  <goal>xsd</goal>
-                </goals>
-                <configuration>
-                  <version>3.0.0</version>
-                  <packageWithVersion>true</packageWithVersion>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <artifactId>maven-jar-plugin</artifactId>
-            <executions>
-              <execution>
-                <phase>package</phase>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-                <configuration>
-                  <classifier>all</classifier>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
 </project>