This is an automated email from the ASF dual-hosted git repository. rfscholte pushed a commit to branch revert-MNG-6772 in repository https://gitbox.apache.org/repos/asf/maven.git
commit 90d3eb7323cd58d0a6ea1c239073d7ce5ffabe56 Author: Michael Osipov <[email protected]> AuthorDate: Fri Dec 4 21:03:06 2020 +0100 [MNG-7029] Remove super POM release profile This closes #411 --- .../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 cc55dac..2cde93b 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 @@ -82,55 +82,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 -->
