| <?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/maven-v4_0_0.xsd"> |
| <parent> |
| <artifactId>maven-parent</artifactId> |
| <groupId>org.apache.maven</groupId> |
| <version>8</version> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.apache.maven.artifact</groupId> |
| <artifactId>maven-artifact</artifactId> |
| <version>3.0-alpha-1</version> |
| <name>Maven Artifact</name> |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/maven/artifact/tags/maven-artifact-3.0-alpha-1</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/artifact/tags/maven-artifact-3.0-alpha-1</developerConnection> |
| <url>http://svn.apache.org/viewcvs.cgi/maven/artifact/tags/maven-artifact-3.0-alpha-1</url> |
| </scm> |
| |
| <ciManagement> |
| <system>hudson</system> |
| <url>http://ci.sonatype.org</url> |
| <notifiers> |
| <notifier> |
| <type>mail</type> |
| <configuration> |
| <address>notifications@maven.apache.org</address> |
| </configuration> |
| </notifier> |
| </notifiers> |
| </ciManagement> |
| |
| <distributionManagement> |
| <site> |
| <id>apache.website</id> |
| <url>scp://people.apache.org/www/maven.apache.org/ref/${project.artifactId}-${project.version}/</url> |
| </site> |
| </distributionManagement> |
| <contributors> |
| <contributor> |
| <name>Oleg Gusakov</name> |
| </contributor> |
| <contributor> |
| <name>Jason Dillon</name> |
| </contributor> |
| <contributor> |
| <name>Igor Fedorenko</name> |
| </contributor> |
| <contributor> |
| <name>James William Dumay</name> |
| </contributor> |
| <contributor> |
| <name>Abel MuiƱo</name> |
| </contributor> |
| <contributor> |
| <name>Bruno Aranda</name> |
| </contributor> |
| <contributor> |
| <name>Piotr Bzdyl</name> |
| </contributor> |
| <contributor> |
| <name>Jerome Lacoste</name> |
| </contributor> |
| <contributor> |
| <name>Lester Ecarma</name> |
| </contributor> |
| <contributor> |
| <name>Matthew Inger</name> |
| </contributor> |
| <contributor> |
| <name>Andreas Hoheneder</name> |
| </contributor> |
| </contributors> |
| <dependencies> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>1.5.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-container-default</artifactId> |
| <version>1.0-alpha-44</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-provider-api</artifactId> |
| <version>${wagon.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>aspectj</groupId> |
| <artifactId>aspectjrt</artifactId> |
| <version>1.5.3</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-file</artifactId> |
| <version>${wagon.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>1.2_Java1.3</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.modello</groupId> |
| <artifactId>modello-maven-plugin</artifactId> |
| <version>1.0-alpha-17</version> |
| <configuration> |
| <version>1.0.0</version> |
| <model>src/main/mdo/metadata.mdo</model> |
| </configuration> |
| <executions> |
| <execution> |
| <id>site-docs</id> |
| <phase>pre-site</phase> |
| <goals> |
| <goal>xdoc</goal> |
| <goal>xsd</goal> |
| </goals> |
| </execution> |
| <execution> |
| <id>standard</id> |
| <goals> |
| <goal>java</goal> |
| <goal>xpp3-reader</goal> |
| <goal>xpp3-writer</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <excludes> |
| <exclude>**/testutils/**</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-release-plugin</artifactId> |
| <configuration> |
| <tagBase>https://svn.apache.org/repos/asf/maven/artifact/tags</tagBase> |
| <useReleaseProfile>true</useReleaseProfile> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <target>1.5</target> |
| <source>1.5</source> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-maven-plugin</artifactId> |
| <version>1.3.8</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>descriptor</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>clirr-maven-plugin</artifactId> |
| <version>2.2.1</version> |
| <configuration> |
| <comparisonArtifacts> |
| <comparisonArtifact> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-artifact</artifactId> |
| <version>2.0.9</version> |
| </comparisonArtifact> |
| <comparisonArtifact> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-artifact-manager</artifactId> |
| <version>2.0.9</version> |
| </comparisonArtifact> |
| </comparisonArtifacts> |
| <excludes> |
| <!-- expanding interfaces we exclude. Worth reviewing on occasion --> |
| <exclude>org/apache/maven/artifact/manager/WagonManager</exclude> |
| <exclude>org/apache/maven/artifact/metadata/ArtifactMetadataSource*</exclude> |
| <exclude>org/apache/maven/artifact/repository/ArtifactRepositoryFactory*</exclude> |
| <exclude>org/apache/maven/artifact/resolver/ArtifactCollector</exclude> |
| <exclude>org/apache/maven/artifact/transform/ArtifactTransformationManager*</exclude> |
| <exclude>org/apache/maven/artifact/resolver/ArtifactResolver*</exclude> |
| <exclude>org/apache/maven/artifact/resolver/ResolutionListenerForDepMgmt</exclude> |
| <exclude>org/apache/maven/artifact/resolver/conflict/ConflictResolver*</exclude> |
| <!-- plexus interfaces were removed only --> |
| <exclude>org/apache/maven/artifact/transform/DefaultArtifactTransformationManager</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| <properties> |
| <wagon.version>1.0-beta-3</wagon.version> |
| </properties> |
| </project> |