Maven组装:添加同一工件的不同版本

我使用maven汇编插件创建我的应用程序存档。我的pom中存在的所有依赖项都包含在内,没有任何问题。

现在,我需要包含同一工件的两个或多个版本。

如果在我的绒球我把

<dependencies>
        [...]
        <dependency>
            <groupId>db.test</groupId>
            <artifactId>my-model</artifactId>
            <version>1.0.3</version>
        </dependency>
        <dependency>
            <groupId>db.test</groupId>
            <artifactId>my-model</artifactId>
            <version>1.1.0</version>
        </dependency>
</dependencies>

对于源,依赖冲突解决程序删除了旧版本,只有1.1.0被打包在存档中

我尝试通过使用程序集xml描述符文件来包含jar。我没有找到任何解决方案。

一个可能的解决方案是手动将所有需要的模型.jar放在一个文件夹中,并告诉组件将其复制到存档中。但我正在寻找一个更易于配置的解决方案。

任何想法?


答案 1

我通过使用maven-dependency-plugin来复制解析的pom依赖关系和其他jar,从而找到了解决方案。

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</version>
<executions>
    <execution>
        <id>copy-dependencies</id>
        <phase>package</phase>
        <goals>
            <goal>copy-dependencies</goal>
        </goals>
        <configuration>
            <outputDirectory>${project.build.directory}/lib</outputDirectory>
            <overWriteReleases>false</overWriteReleases>
            <overWriteSnapshots>false</overWriteSnapshots>
            <overWriteIfNewer>true</overWriteIfNewer>
            <includeScope>runtime</includeScope>
        </configuration>
    </execution>
    <execution>
        <id>copy-model</id>
        <phase>package</phase>
        <goals>
            <goal>copy</goal>
        </goals>
        <configuration>
            <artifactItems>
                <artifactItem>
                    <groupId>my.test.pkg</groupId>
                    <artifactId>my-model</artifactId>
                    <classifier>server</classifier>
                    <version>1.0.3</version>
                    <type>jar</type>
                </artifactItem>
                <artifactItem>
                    <groupId>my.test.pkg</groupId>
                    <artifactId>my-model</artifactId>
                    <classifier>server</classifier>
                    <version>1.1.0</version>
                    <type>jar</type>
                </artifactItem>
            </artifactItems>
            <outputDirectory>${project.build.directory}/lib</outputDirectory>
        </configuration>
    </execution>
</executions>

现在,我只需要在我的程序集xml中添加以下行

    <fileSet>
        <directory>${project.build.directory}/lib</directory>
        <outputDirectory>/lib</outputDirectory>
        <filtered>false</filtered>
        <includes>
            <include>*.jar</include>
        </includes>
        <fileMode>0600</fileMode>
    </fileSet>

答案 2

Maven认为一次拥有多个版本的模块没有任何意义。它假定较新版本取代了较旧的版本。如果没有,它就不是同一个模块。我建议你给较新的模块一个不同的名称,并确保它有不同的包,以避免选择随机模块。

总的来说,Maven试图鼓励好的应用程序设计,并故意让它难以做它认为是一个坏主意的事情。


推荐