| <?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.shared</groupId> |
| <artifactId>maven-shared-components</artifactId> |
| <version>37</version> |
| <relativePath/> |
| </parent> |
| |
| <packaging>pom</packaging> |
| <artifactId>maven-artifact-transfer-parent</artifactId> |
| <version>2.0.0-SNAPSHOT</version> |
| |
| <name>Apache Maven Artifact Transfer Parent</name> |
| <description>An API to install, deploy and resolving artifacts with supported versions of Maven</description> |
| |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git</developerConnection> |
| <url>https://github.com/apache/maven-artifact-transfer/tree/${project.scm.tag}</url> |
| <tag>HEAD</tag> |
| </scm> |
| <issueManagement> |
| <system>jira</system> |
| <url>https://issues.apache.org/jira/browse/MSHARED</url> |
| </issueManagement> |
| <ciManagement> |
| <system>Jenkins</system> |
| <url>https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-artifact-transfer/</url> |
| </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> |
| <javaVersion>7</javaVersion> |
| <checkstyle.violation.ignore>RedundantThrows,NewlineAtEndOfFile,ParameterNumber,MethodLength,FileLength,ModifierOrder,RegexpHeader</checkstyle.violation.ignore> |
| <project.build.outputTimestamp>2020-12-22T10:32:11Z</project.build.outputTimestamp> |
| <sisu.version>0.3.5</sisu.version> |
| <guice.version>3.2.6</guice.version> |
| <maven.baseVersion>3.1.0</maven.baseVersion> |
| <artifactFilters.version>3.1.0</artifactFilters.version> |
| |
| <!-- maven-3.0.x runtime --> |
| <maven30x.version>3.0.5</maven30x.version> |
| <maven30xSonatypeAether.version>1.13.1</maven30xSonatypeAether.version> |
| <maven30xSonatypeSisu.version>2.3.0</maven30xSonatypeSisu.version> |
| <!-- maven 3.1.x runtime --> |
| <maven31x.version>3.1.1</maven31x.version> |
| <maven31xEclipseAether.version>0.9.0.M2</maven31xEclipseAether.version> |
| <maven31xEclipseSisu.version>0.3.5</maven31xEclipseSisu.version> |
| </properties> |
| |
| <modules> |
| <module>maven-artifact-transfer-api</module> |
| <module>maven-3.0.x</module> |
| <module>maven-3.1.x</module> |
| <module>maven-artifact-transfer</module> |
| </modules> |
| |
| <dependencyManagement> |
| <dependencies> |
| <!-- our modules --> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-artifact-transfer-api</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-artifact-transfer-maven-3.0.x</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-artifact-transfer-maven-3.1.x</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-artifact-transfer</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <!-- general deps --> |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-utils</artifactId> |
| <version>3.3.0</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.7.32</version> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-simple</artifactId> |
| <version>1.7.32</version> |
| </dependency> |
| <dependency> |
| <groupId>javax.inject</groupId> |
| <artifactId>javax.inject</artifactId> |
| <version>1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-component-annotations</artifactId> |
| <version>2.1.1</version> |
| </dependency> |
| |
| <!-- test deps --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.13.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>2.28.2</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.plexus</groupId> |
| <artifactId>plexus-component-metadata</artifactId> |
| <version>2.2.0</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>generate-metadata</goal> |
| <goal>generate-test-metadata</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <showDeprecation>true</showDeprecation> |
| <compilerArgs> |
| <arg>-Xlint:deprecation</arg> |
| <arg>-Xlint:unchecked</arg> |
| </compilerArgs> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <configuration> |
| <excludes combine.children="append"> |
| <exclude>dependency-reduced-pom.xml</exclude> |
| <exclude>src/it/**/.settings/**</exclude> |
| <exclude>src/it/**/.project</exclude> |
| <exclude>src/it/**/.classpath</exclude> |
| <exclude>src/it/**/target/**</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>animal-sniffer-maven-plugin</artifactId> |
| <version>1.23</version> |
| <executions> |
| <execution> |
| <id>sniff</id> |
| <phase>test</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <signature> |
| <groupId>org.codehaus.mojo.signature</groupId> |
| <artifactId>java17</artifactId> |
| <version>1.0</version> |
| </signature> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <version>3.6.3</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </project> |