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 2020/12/04 20:03:30 UTC

[maven] branch MNG-7029 created (now e59860d)

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

michaelo pushed a change to branch MNG-7029
in repository https://gitbox.apache.org/repos/asf/maven.git.


      at e59860d  [MNG-7029] Remove super POM release profile

This branch includes the following new commits:

     new e59860d  [MNG-7029] Remove super POM release profile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven] 01/01: [MNG-7029] Remove super POM release profile

Posted by mi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e59860d560024a6ea690a50aae3b1afa0a8ffbe2
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Fri Dec 4 21:03:06 2020 +0100

    [MNG-7029] Remove super POM release profile
---
 .../resources/org/apache/maven/model/pom-4.0.0.xml | 50 ----------------------
 1 file changed, 50 deletions(-)

diff --git a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
index e61d110..af16148 100644
--- a/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
+++ b/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.0.0.xml
@@ -104,55 +104,5 @@ under the License.
     <outputDirectory>${project.build.directory}/site</outputDirectory>
   </reporting>
 
-  <profiles>
-    <!-- NOTE: The release profile will be removed from future versions of the super POM -->
-    <profile>
-      <id>release-profile</id>
-
-      <activation>
-        <property>
-          <name>performRelease</name>
-          <value>true</value>
-        </property>
-      </activation>
-
-      <build>
-        <plugins>
-          <plugin>
-            <inherited>true</inherited>
-            <artifactId>maven-source-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-sources</id>
-                <goals>
-                  <goal>jar-no-fork</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <inherited>true</inherited>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>attach-javadocs</id>
-                <goals>
-                  <goal>jar</goal>
-                </goals>
-              </execution>
-            </executions>
-          </plugin>
-          <plugin>
-            <inherited>true</inherited>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <configuration>
-              <updateReleaseInfo>true</updateReleaseInfo>
-            </configuration>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
-
 </project>
 <!-- END SNIPPET: superpom -->