我有一个具有父子依赖关系的多模块结构。大约有20个子模块。我想运行mvn clean verify以获得我的构建的快速反馈,然后安装我正在尝试使用的软件包:mvn install:install。 下面是父pom的片段:
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
<executions>
<execution>
<id>install</id>
<phase>install</phase>
<goals>
<goal>install</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.1</version>
</plugin>
</plugins>
</pluginManagement>
但是,一旦我运行mvn install:install,我收到以下错误:
[错误]无法在项目sae.domain上执行目标org.apache.maven.plugins:maven-install-plugin:2.5.1:install(default-cli):此项目的包装未分配文件到构建工件 - &gt; [帮助1]
我还有什么东西可以添加/改变我的pom /目标等,或者我在这里遗漏了什么?我根据互联网上提供的各种输入尝试了这些东西,并且我害怕打了一个deadend!
答案 0 :(得分:0)
您可以通过向父pom文件添加模块来实现此目的
<modules>
<module>simple-weather</module>
<module>simple-webapp</module>
</modules>
这是一个构建多模块项目的教程
http://books.sonatype.com/mvnex-book/reference/multimodule-sect-simple-parent.html
以上教程
中的父项目POM文件示例<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.sonatype.mavenbook.multi</groupId>
<artifactId>simple-parent</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<name>Multi Chapter Simple Parent Project</name>
<modules>
<module>simple-weather</module>
<module>simple-webapp</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
答案 1 :(得分:0)
如果您只想安装它,请运行
mvn install
而不是mvn install:install。
答案 2 :(得分:0)
我没有必要添加这些额外的插件信息并将其作为
运行 mvn jar:jar install:install
在我的案例中工作。
答案 3 :(得分:0)
好的,如上所述,如果您只想安装它,请运行
mvn install
如果你有用户的想法,就像这样: