У меня есть 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>
В модуле EI есть основной класс, поэтому в pom E у меня есть:
<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.Я хочу создать только последнюю банку, потому что B, C и D находятся в E-jar-with-dependencies.jar
возможно ли это?