| <?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.maven</groupId> |
| <artifactId>maven-parent</artifactId> |
| <version>31-SNAPSHOT</version> |
| <relativePath>./pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>maven-parent.</artifactId> |
| <packaging>pom</packaging> |
| |
| <name>Apache Maven Parent POM</name> |
| <description>This project consists of a POM that contains settings that are likely to be useful to any Maven project that is building and releasing code with Maven.</description> |
| <url>https://maven.apache.org/pom/maven/</url> |
| |
| <modules> |
| <module>maven-archetype-bundles/site-pom.xml</module> |
| <module>maven-plugins/site-pom.xml</module> |
| <module>maven-shared-components/site-pom.xml</module> |
| <module>maven-skins/site-pom.xml</module> |
| <module>doxia-tools/site-pom.xml</module> |
| </modules> |
| |
| <scm> |
| <connection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/maven</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/maven</developerConnection> |
| <url>https://svn.apache.org/viewvc/maven/pom/trunk/maven</url> |
| </scm> |
| <issueManagement> |
| <system>jira</system> |
| <url>https://issues.apache.org/jira/browse/MPOM/component/12314371</url> |
| </issueManagement> |
| <ciManagement> |
| <system>Jenkins</system> |
| <url>https://builds.apache.org/view/M-R/view/Maven/job/maven-parent/</url> |
| </ciManagement> |
| <distributionManagement> |
| <site> |
| <id>apache.website</id> |
| <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/components/${maven.site.path}</url> |
| </site> |
| </distributionManagement> |
| |
| <properties> |
| <maven.site.path>pom-archives/maven-LATEST</maven.site.path> |
| <rat.skip>true</rat.skip> |
| <maven.test.skip>true</maven.test.skip> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-site-plugin</artifactId> |
| <configuration> |
| <siteDirectory>${basedir}/src/site-docs</siteDirectory> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |