且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

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

更新时间:2021-08-23 02:32:45

所以当我发布这个帖子时,我发现了这个帖子:

So as soon as I posted this, I found this thread:

创建多个可运行的Jars(具有相关性)包含)来自单个Maven项目

这使用了一种不同的方法,因为它不使用两个配置文件,它使用两个执行,如下: / p>

This uses a different approach in that it doesn't use two profiles, it uses two executions, as such:

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

这似乎有效。故事的寓意似乎是我不完​​全理解档案或什么时候应该使用它们。

This seems to be working. The moral of the story seems to be that I don't completely understand profiles or when they should be used.