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 64bab769101e97526084049b370d87fa61848458
Author: Michael Osipov <michaelo@apache.org>
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 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 -->
|