使用 maven-assembly-plugin 创建两个可执行 Jar

2022-09-01 07:34:26

我有一个Maven项目,我想从中创建两个可执行的jar文件。一个将由用户以交互方式使用,另一个将作为计划作业运行,该作业读取前者生成的日志文件。最后,我希望两个 jar 文件是相同的,除了 MANIFEST 中的 Main-Class 属性。MF 文件。

我正在使用maven-antrun-plugin来创建一个可执行jar,这似乎工作正常,直到我尝试通过引入Maven配置文件来创建第二个jar文件。我的POM文件的相关部分如下所示:

<profiles>
    <profile>
        <id>publisher</id>
        <build>
            <finalName>${project.artifactId}</finalName>
            <plugins>
                ...
                <plugin>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.4</version>
                    <configuration>
                        <appendAssemblyId>false</appendAssemblyId>
                        <finalName>${project.artifactId}</finalName>
                        <archive>
                            <manifest>
                                <mainClass>fully.qualified.path.Publisher</mainClass>
                            </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>
    </profile>
    <profile>
        <id>logReader</id>
        <build>
            <finalName>${project.artifactId}</finalName>
            <plugins>
                ...
                <plugin>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>2.4</version>
                    <configuration>
                        <appendAssemblyId>false</appendAssemblyId>
                        <finalName>${project.artifactId}-logReader</finalName>
                        <archive>
                            <manifest>
                                <mainClass>fully.qualified.path.LogReader</mainClass>
                            </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>
    </profile>
</profiles>

实际上,两者之间的唯一区别是插件中定义的“finalName”和“mainClass”元素。

当我尝试在两个配置文件上执行mvn:package时(顺便说一句,我使用的是IntelliJ IDEA),我得到了两个.jar文件,但一个是正确的,另一个是不正确的。“正确”的包含所有依赖项和有效的清单。MF 文件。“不正确”的那个不包含任何依赖项和清单。MF文件缺少我需要的“主类”属性,以便它是可执行的。

我发现,如果我只运行一个配置文件或另一个配置文件,它可以正常工作,但是,如果我尝试同时执行两个配置文件,它就会失败。我也在我的日志中得到了以下笔记,但我必须承认我并不完全理解他们在说什么:

[INFO] Building jar: .../target/publisher.jar
...
[INFO] Building jar: .../target/publisher-logReader.jar
[WARNING] Configuration options: 'appendAssemblyId' is set to false, and 'classifier' is missing.
Instead of attaching the assembly file: .../target/publisher-logReader.jar, it will become the file for main project artifact.
NOTE: If multiple descriptors or descriptor-formats are provided for this project, the value of this file will be non-deterministic!
[WARNING] Replacing pre-existing project main-artifact file: .../target/publisher.jar with assembly file: .../target/publisher-logReader.jar

对此有什么想法吗?是否有可能以这种方式使用单个 mvn:package 生成两个 jar 文件,或者我是否吠叫了错误的树?

谢谢!


答案 1

所以一旦我发布这个,我就发现了这个线程:

从单个 Maven 项目创建多个可运行的 Jar(包括缺点)

这使用不同的方法,因为它不使用两个配置文件,而是使用两个执行,如下所示:

<plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.4</version>
    <executions>
        <execution>
            <id>build-publisher</id>
            <configuration>
                <appendAssemblyId>false</appendAssemblyId>
                <archive>
                    <manifest>
                        <mainClass>fully.qualified.path.Publisher</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <finalName>${project.artifactId}</finalName>
            </configuration>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
        </execution>
        <execution>
            <id>build-logReader</id>
            <configuration>
                <appendAssemblyId>false</appendAssemblyId>
                <archive>
                    <manifest>
                        <mainClass>fully.qualified.path.LogReader</mainClass>
                    </manifest>
                </archive>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <finalName>${project.artifactId}-logReader</finalName>
            </configuration>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
        </execution>
    </executions>
</plugin>

这似乎正在起作用。这个故事的寓意似乎是我不完全理解个人资料或何时应该使用它们。


答案 2

推荐