gpt4 book ai didi

java - Maven Assembly 插件 - 包含来自另一个模块的类

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:03:07 24 4
gpt4 key购买 nike

我有一个多模块项目,我正在尝试在 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

定义.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>

子项目2->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>

最佳答案

如果我理解有误,请纠正我。您需要 SubProject1 中的一些特定功能。并且您只需要此功能(而不是更多)并且您不能将整个 SubProject1 作为依赖项包含在内。

因此,如果我理解正确的话,您可以在另一个项目(例如 Commons)中提取此功能,并将其作为依赖项添加到 SubProject1 和 SubProject2 中。

关于java - Maven Assembly 插件 - 包含来自另一个模块的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26116270/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com