| <?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.plugins</groupId> |
| <artifactId>maven-plugins</artifactId> |
| <version>45</version> |
| <relativePath /> |
| </parent> |
| |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>4.0.0-beta-3-SNAPSHOT</version> |
| <packaging>maven-plugin</packaging> |
| |
| <name>Apache Maven Deploy Plugin</name> |
| <description>Uploads the project artifacts to the internal remote repository.</description> |
| <inceptionYear>2004</inceptionYear> |
| |
| <contributors> |
| <!-- alphabetic order --> |
| <contributor> |
| <name>Hermann Josef Hill</name> |
| </contributor> |
| </contributors> |
| |
| <prerequisites> |
| <maven>${mavenVersion}</maven> |
| </prerequisites> |
| |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-deploy-plugin.git</developerConnection> |
| <tag>HEAD</tag> |
| <url>https://github.com/apache/maven-deploy-plugin/tree/${project.scm.tag}</url> |
| </scm> |
| <issueManagement> |
| <system>GitHub</system> |
| <url>https://github.com/apache/maven-deploy-plugin/issues</url> |
| </issueManagement> |
| <ciManagement> |
| <system>Jenkins</system> |
| <url>https://ci-builds.apache.org/job/Maven/job/maven-box/job/maven-deploy-plugin/</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>17</javaVersion> |
| <mavenVersion>4.0.0-rc-3</mavenVersion> |
| |
| <guiceVersion>6.0.0</guiceVersion> |
| <mavenAntrunPluginVersion>${version.maven-antrun-plugin}</mavenAntrunPluginVersion> |
| <mavenCompilerPluginVersion>${version.maven-compiler-plugin}</mavenCompilerPluginVersion> |
| <mavenEnforcerPluginVersion>${version.maven-enforcer-plugin}</mavenEnforcerPluginVersion> |
| <mavenInstallPluginVersion>${version.maven-install-plugin}</mavenInstallPluginVersion> |
| <mavenJarPluginVersion>${version.maven-jar-plugin}</mavenJarPluginVersion> |
| <mavenJavadocPluginVersion>${version.maven-javadoc-plugin}</mavenJavadocPluginVersion> |
| <mavenPluginToolsVersion>${version.maven-plugin-tools}</mavenPluginToolsVersion> |
| <mavenResourcesPluginVersion>${version.maven-resources-plugin}</mavenResourcesPluginVersion> |
| <mavenSourcePluginVersion>${version.maven-source-plugin}</mavenSourcePluginVersion> |
| <mavenSurefirePluginVersion>${version.maven-surefire}</mavenSurefirePluginVersion> |
| <mavenWarPluginVersion>${version.maven-war-plugin}</mavenWarPluginVersion> |
| <mavenPluginTestingVersion>4.0.0-beta-4</mavenPluginTestingVersion> |
| <mavenResolverVersion>2.0.11</mavenResolverVersion> |
| <mockitoVersion>5.19.0</mockitoVersion> |
| <slf4jVersion>2.0.17</slf4jVersion> |
| <version.plexus-xml>4.0.3</version.plexus-xml> |
| <version.maven-plugin-tools>4.0.0-beta-1</version.maven-plugin-tools> |
| <version.maven-invoker-plugin>3.7.0</version.maven-invoker-plugin> |
| |
| <!-- TODO remove property maven4x.site.path with next parent --> |
| <maven4x.site.path>plugins-archives/${project.artifactId}-LATEST-4.x</maven4x.site.path> |
| <!-- 4.x publish --> |
| <maven.site.path>${maven4x.site.path}</maven.site.path> |
| |
| <project.build.outputTimestamp>2025-02-23T17:09:58Z</project.build.outputTimestamp> |
| </properties> |
| |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>com.google.guava</groupId> |
| <artifactId>guava</artifactId> |
| <version>33.4.8-jre</version> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-api-core</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-api-di</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-api-annotations</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-api-model</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- Test --> |
| <dependency> |
| <groupId>org.apache.maven.plugin-testing</groupId> |
| <artifactId>maven-plugin-testing-harness</artifactId> |
| <version>${mavenPluginTestingVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-core</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven.resolver</groupId> |
| <artifactId>maven-resolver-api</artifactId> |
| <version>${mavenResolverVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.maven</groupId> |
| <artifactId>maven-impl</artifactId> |
| <version>${mavenVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.google.inject</groupId> |
| <artifactId>guice</artifactId> |
| <version>${guiceVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-junit-jupiter</artifactId> |
| <version>${mockitoVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>${mockitoVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>${slf4jVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-simple</artifactId> |
| <version>${slf4jVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>com.diffplug.spotless</groupId> |
| <artifactId>spotless-maven-plugin</artifactId> |
| <configuration> |
| <java> |
| <includes> |
| <include>src/**/*.java</include> |
| </includes> |
| </java> |
| <pom> |
| <includes> |
| <include>**/pom.xml</include> |
| </includes> |
| </pom> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>run-its</id> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-invoker-plugin</artifactId> |
| <configuration> |
| <debug>true</debug> |
| <showErrors>true</showErrors> |
| <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
| <cloneClean>true</cloneClean> |
| <pomIncludes> |
| <pomInclude>*/pom.xml</pomInclude> |
| <pomInclude>*/non-default-pom.xml</pomInclude> |
| </pomIncludes> |
| <preBuildHookScript>setup</preBuildHookScript> |
| <postBuildHookScript>verify</postBuildHookScript> |
| <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> |
| <settingsFile>src/it/settings.xml</settingsFile> |
| <scriptVariables> |
| <remoteRepo>${project.build.directory}/remote-repo</remoteRepo> |
| </scriptVariables> |
| <filterProperties> |
| <remoteRepo>${project.build.directory}/remote-repo</remoteRepo> |
| </filterProperties> |
| <goals> |
| <goal>deploy</goal> |
| </goals> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </profile> |
| </profiles> |
| </project> |