У меня есть многомодульный проект с модулем war и ear.Во время войны я создаю банку, используя maven-antrun-plugin.Сейчас я пытаюсь развернуть эту флягу на моем Nexus, используя maven-deploy-plugin.
Вот pom.xml моей войны:
<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>com.example</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>test-war</artifactId>
<packaging>war</packaging>
<properties>
...
</properties>
<dependencies>
...
</dependencies>
<!-- <distributionManagement>
<repository>
<id>nexus-releases</id>
<url><nexus_releases_repo_url></url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<url><nexus_snapshots_repo_url></url>
</snapshotRepository>
</distributionManagement> -->
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ant-build</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<ant antfile="<path_to_build_xml>" target="run" />
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<executions>
<execution>
<id>deploy-file</id>
<phase>deploy</phase>
<goals>
<goal>deploy-file</goal>
</goals>
<configuration>
<repositoryId>nexus-snapshots</repositoryId>
<file>fileToDeploy.jar</file>
<url>http://<path_to_my_repo></url>
<groupId>${project.parent.groupId}</groupId>
<artifactId>${project.parent.artifactId}-tmp</artifactId>
<version>${project.parent.version}</version>
<packaging>jar</packaging>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
Когда я запускаю clean deploy
на родительском поме, я получаю следующую ошибку:
Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project test: Deployment failed: repository element was not specified in the POM inside distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter -> [Help 1]
Хорошо, поэтому я добавил раздел distributionManagement
в войне, но я получаю ту же ошибку.Если я запускаю ту же команду на модуле war, ошибки не возникает, но на Nexus рядом с файлом jar также развернут файл war.
Есть ли способ развернуть только файл jar с помощью команды deploy
?