114 lines
4.2 KiB
XML
114 lines
4.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache</groupId>
|
|
<artifactId>apache</artifactId>
|
|
<version>25</version>
|
|
<relativePath>./pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>apache.</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Apache Software Foundation Parent POM</name>
|
|
<description>This project consists of a POM that contains settings that are likely to be useful to any Apache project that is building and releasing code with Maven 2/3.</description>
|
|
<url>https://maven.apache.org/pom/asf/</url>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>Apache Release Discuss</name>
|
|
<subscribe>mailto:release-discuss-subscribe@apache.org</subscribe>
|
|
<unsubscribe>mailto:release-discuss-unsubscribe@apache.org</unsubscribe>
|
|
<post>mailto:release-discuss@apache.org</post>
|
|
<archive>https://lists.apache.org/list.html?release-discuss@apache.org</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git</connection>
|
|
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git</developerConnection>
|
|
<url>https://github.com/apache/maven-apache-parent/tree/${project.scm.tag}</url>
|
|
<tag>apache-${project.version}</tag>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>jira</system>
|
|
<url>https://issues.apache.org/jira/issues/?jql=project%3DMPOM+AND+component%3Dasf</url>
|
|
</issueManagement>
|
|
<ciManagement>
|
|
<system>Jenkins</system>
|
|
<url>https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-parent/</url>
|
|
<notifiers>
|
|
<notifier>
|
|
<type>mail</type>
|
|
<configuration>
|
|
<address>notifications@maven.apache.org</address>
|
|
</configuration>
|
|
</notifier>
|
|
</notifiers>
|
|
</ciManagement>
|
|
<distributionManagement>
|
|
<site>
|
|
<id>apache.website</id>
|
|
<url>scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path}</url>
|
|
</site>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<maven.site.cache>${user.home}/maven-sites</maven.site.cache>
|
|
<maven.site.path>pom-archives/asf-LATEST</maven.site.path>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<configuration>
|
|
<siteDirectory>${basedir}/src/site-docs</siteDirectory>
|
|
<skipDeploy>true</skipDeploy><!-- don't deploy site with maven-site-plugin -->
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
|
<configuration>
|
|
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
|
|
<checkoutDirectory>${maven.site.cache}/${maven.site.path}</checkoutDirectory>
|
|
<tryUpdate>true</tryUpdate>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>scm-publish</id>
|
|
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
|
|
<goals>
|
|
<goal>publish-scm</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|