我有4个模块 我的将军pom是这样的:
<artifactId>A</artifactId>
<name>Modules</name>
<packaging>pom</packaging>
<modules>
<module>B</module>
<module>C</module>
<module>D</module>
<module>E</module>
</modules>
在模块E中,我有主要类,所以在E的pom中我有:
<parent>
<artifactId>A</artifactId>
</parent>
<artifactId>E</artifactId>
<name>E</name>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>group</groupId>
<artifactId>C</artifactId>
</dependency>
<dependency>
<groupId>group</groupId>
<artifactId>D</artifactId>
</dependency>
<dependency>
<groupId>group</groupId>
<artifactId>B</artifactId>
</dependency>
</dependencies>
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>Mainclass</mainClass>
<addClasspath>true</addClasspath>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
当我运行mvn包时;它创建了B.jar,C.jar,D.jar和E-jar-with-dependencies.jar。 我只想创建最后一个jar,因为B,C和D都在E-jar-with-dependencies.jar
有可能吗?
答案 0 :(得分:0)
我不确定这是否有帮助,但
由于E需要B,C和D是正常的。
如果在根文件夹中运行mvn package
,maven将构建所有模块,这是预期的。
但如果您只需要E,则可以在E的目录中运行mvn package
。但是,这将使用最后的构建B,C和D依赖项(安装在存储库中),而不重建它们。