我有一个多模块项目,我正在尝试在SubProject2中生成一个汇编文件,其中包含一些类以及在SubProject1中定义的一些DTO。但是,Proc.jar文件只有Proc.class和com \ myproy \ spr \ dto * .class,而SubProject1的文件(com \ myproy \ dto * .class)不包括在内,无法想出办法使它工作。
项目'布局:
Parent
|-pom.xml
|
SubProject1
|-pom.xml
|-src\main\java\com\myproy\dto
|-src\main\java\com\myproy\util
|
SubProject2
|-pom.xml
|-src\assembly\def.xml
|-src\main\java\com\myproy\spr
|-src\main\java\com\myproy\spr\dto
def.xml:
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0
http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>Proc</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>target/classes</directory>
<includes>
<include>com/myproy/spr/Proc.class</include>
<include>com/myproy/spr/dto/*.class</include>
<include>com/myproy/dto/*.class</include>
</includes>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>
SubProject2-&GT; pom.xml的
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<id>distro-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/def.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
答案 0 :(得分:1)
如果我理解错误,请纠正我。您需要SubProject1中的某些特定功能。并且您只需要此功能(而不是更多),并且不能将整个SubProject1包含为依赖项。
所以也许,如果我理解正确,你可以在另一个项目(类似Commons)中提取这个功能,并将它作为依赖添加到SubProject1和SubProject2中。
答案 1 :(得分:0)
为什么不将项目添加为jar依赖项?¿.