aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources/projects/project.xml
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources/projects/project.xml')
-rw-r--r--framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources/projects/project.xml162
1 files changed, 0 insertions, 162 deletions
diff --git a/framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources/projects/project.xml b/framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources/projects/project.xml
deleted file mode 100644
index a9119714..00000000
--- a/framework/src/maven/apache-maven-3.3.3/maven-core/src/test/resources/projects/project.xml
+++ /dev/null
@@ -1,162 +0,0 @@
-<?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.
--->
-
-<model>
- <modelVersion>3</modelVersion>
- <groupId>maven</groupId>
- <artifactId>maven-project-test</artifactId>
- <name>Maven</name>
- <version>1.0-beta-9</version>
- <inceptionYear>2001</inceptionYear>
- <package>org.apache.maven</package>
- <description>Description</description>
- <shortDescription>shortDescription</shortDescription>
- <url>http://maven.apache.org/</url>
- <issueTrackingUrl>issueTrackingUrl</issueTrackingUrl>
- <distributionManagement>
- <repository>
- <id>distributionRepositoryId</id>
- <name>distributionRepositoryName</name>
- <url>distributionRepository</url>
- </repository>
- <site>
- <id>siteDistributionId</id>
- <name>siteDistributionName</name>
- <url>siteDistributionUrl</url>
- </site>
- </distributionManagement>
-
- <organization>
- <name>Apache Software Foundation</name>
- <url>http://apache.org/</url>
- <logo>/images/jakarta-logo-blue.gif</logo>
- </organization>
-
- <scm>
- <connection>anon-connection</connection>
- <developerConnection>developer-connection</developerConnection>
- <url>repository-url</url>
- </scm>
-
- <mailingLists>
- <mailingList>
- <name>Maven User List</name>
- <subscribe>subscribe</subscribe>
- <unsubscribe>unsubscribe</unsubscribe>
- <archive>archive</archive>
- </mailingList>
- </mailingLists>
-
- <developers>
- <developer>
- <name>Jason van Zyl</name>
- <id>jvanzyl</id>
- <email>jason@maven.org</email>
- <organization>Zenplex</organization>
- <roles>
- <role>Founder</role>
- <role>Release Manager</role>
- </roles>
- </developer>
- </developers>
-
- <contributors>
- <contributor>
- <name>Martin van dem Bemt</name>
- <email>mvdb@mvdb.com</email>
- </contributor>
- </contributors>
-
- <dependencies>
-
- <dependency>
- <groupId>g1</groupId>
- <artifactId>d1</artifactId>
- <version>1.0</version>
- <url>d1-url</url>
- </dependency>
-
- <dependency>
- <groupId>g2</groupId>
- <artifactId>d2</artifactId>
- <version>2.0</version>
- <url>d2-url</url>
- </dependency>
-
- </dependencies>
-
- <build>
- <nagEmailAddress>jason@maven.org</nagEmailAddress>
- <sourceDirectory>/sourceDirectory</sourceDirectory>
- <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
- <unitTest>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- <excludes>
- <exclude>**/RepositoryTest.java</exclude>
- <exclude>**/JAXPTest.java</exclude>
- </excludes>
- <resources>
- <resource>
- <directory>${basedir}/src/test</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </resource>
- </resources>
- </unitTest>
- <resources>
- <resource>
- <directory>/src/conf</directory>
- <includes>
- <include>*.xsd</include>
- <include>*.dtd</include>
- <include>*.mod</include>
- <include>log4j.properties</include>
- <include>driver.jelly</include>
- <include>driver.properties</include>
- </includes>
- </resource>
- <resource>
- <directory>/src/messages</directory>
- <targetPath>org/apache/maven/messages</targetPath>
- <includes>
- <include>messages*.properties</include>
- </includes>
- </resource>
- </resources>
- </build>
-
- <reports>
- <report>maven-jdepend-plugin</report>
- <report>maven-checkstyle-plugin</report>
- <report>maven-changelog-plugin</report>
- <report>maven-file-activity-plugin</report>
- <report>maven-developer-activity-plugin</report>
- <report>maven-javadoc-plugin</report>
- <report>maven-jxr-plugin</report>
- <report>maven-junit-report-plugin</report>
- <report>maven-tasklist-plugin</report>
- <report>maven-jellydoc-plugin</report>
- </reports>
-
-</model>