创建两个可执行罐子使用maven组件,插件(Creating Two Executable Jars

2019-08-19 08:26发布

我有一个Maven项目,我想用它创建两个可执行的JAR文件。 一个将交互用户使用,第二个将运行作为计划的作业,其读取由前者产生的日志文件。 最后,我希望这两个jar文件是除了在MANIFEST.MF文件中的Main-Class属性相同。

我使用maven-antrun-插件来创建一个可执行的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:在这两个配置文件包(我用的IntelliJ IDEA,顺便说一下),我得到两个.jar文件,但一个是正确的,另一种是不正确。 “正确的”一个包含了所有的依赖关系和有效的MANIFEST.MF文件。 在“不正确”一个不包含任何依赖性和MANIFEST.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

这个有什么想法? 是否有可能产生两个jar文件与单个MVN:包这样,还是我找错了树?

谢谢!

Answer 1:

所以,只要我张贴了这个,我发现这个线程:

创建多个运行的广口瓶(含depencies含税)从一个单一的Maven项目

这将使用不同的方法,因为它不使用两个配置文件,它使用两个执行,因为这样的:

<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>

这似乎是工作。 这个故事的寓意似乎是我不完​​全理解的配置文件,或者当他们应该被使用。



文章来源: Creating Two Executable Jars Using maven-assembly-plugin