使用分类器更改工件的 Maven 依赖项

Posted

技术标签:

【中文标题】使用分类器更改工件的 Maven 依赖项【英文标题】:Change maven dependency for artifact using classifier 【发布时间】:2011-05-19 04:28:08 【问题描述】:

使用 maven jar 插件,我构建了两个 jar:bar-1.0.0.jar 和 bar-1.0.0-client.jar。

实际上在我的 POM 中,我有以下依赖项:

<dependency>   
   <groupId>de.app.test</groupId>
   <artifactId>foo</artifactId>
   <version>1.0.0</version>
</dependency>

这个工件也存在于两个版本 bar-1.0.0.jar 和 bar-1.0.0-client.jar

我想让 bar-1.0.0-client.jar 依赖于 foo-1.0.0-client.jar 和 bar-1.0.0.jar 依赖于 foo-1.0.0.jar.

=================

->第一个(错误的)解决方案:定义提供的范围并在使用 bar.jar 时使用正确的 foo 包

->第二个(长)解决方案:将“服务器”分类器添加到另一个 jar。使用不同的配置文件来构建 foo 工件并将分类器放在一个属性中。

<dependency>
    <groupId>de.app.test</groupId>
    <artifactId>foo</artifactId>
    <version>1.0.0</version>
    <classifier>$profile.classifier<classifier>
</dependency>

================关于配置文件解决方案

接口模块 pom

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <parent>
        <groupId>com.app</groupId>
        <artifactId>myapp-parent</artifactId>
        <version>1.1.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.app</groupId>
    <artifactId>myapp-interfaces</artifactId>
    <version>1.1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>myapp Interfaces</name>
    <profiles>
        <profile>
            <id>server</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-jar-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>jar-server</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                                <configuration>
                                    <classifier>server</classifier>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <profile>
            <id>client</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-jar-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>jar-client</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                                <configuration>
                                    <classifier>client</classifier>
                                    <excludes>
                                        <exclude>**/server/**</exclude>
                                    </excludes>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

实现模块pom

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <parent>
        <groupId>com.app</groupId>
        <artifactId>myapp-parent</artifactId>
        <version>1.1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.app</groupId>
    <artifactId>myapp-model</artifactId>
    <version>1.1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>myapp Model</name>
    <properties>
        <myapp-interfaces.classifier></myapp-interfaces.classifier>
        <myapp-interfaces.version>1.1.0-SNAPSHOT</myapp-interfaces.version>

    </properties>
    <dependencies>
        <dependency>
            <groupId>com.app</groupId>
            <artifactId>myapp-interfaces</artifactId>
            <version>$myapp-interfaces.version</version>
            <classifier>$myapp-interfaces.classifier</classifier>
        </dependency>
        [...]
    </dependencies>
    <profiles>
        <profile>
            <id>server</id>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-jar-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>jar-server</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                                <configuration>
                                    <classifier>server</classifier>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
            <dependencies>
                <dependency>
                    <groupId>com.app</groupId>
                    <artifactId>myapp-interfaces</artifactId>
                    <version>$myapp-interfaces.version</version>
                    <classifier>$myapp-interfaces.classifier</classifier>
                </dependency>
            </dependencies>
            <properties>
                <myapp-interfaces.classifier>server</myapp-interfaces.classifier>
            </properties>
        </profile>
        <profile>
            <id>client</id>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-jar-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>jar-client</id>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar</goal>
                                </goals>
                                <configuration>
                                    <classifier>client</classifier>
                                    <excludes>
                                        <exclude>**/server/**</exclude>
                                        <exclude>**/META-INF/services/**</exclude>
                                    </excludes>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
            <properties>
                <myapp-interfaces.classifier>client</myapp-interfaces.classifier>
            </properties>
            <dependencies>
                <dependency>
                    <groupId>com.app</groupId>
                    <artifactId>myapp-interfaces</artifactId>
                    <version>$myapp-interfaces.version</version>
                    <classifier>$myapp-interfaces.classifier</classifier>
                </dependency>
            </dependencies>
        </profile>
    </profiles>
</project>

这个解决方案的问题是由于我的客户端接口缺少一些接口,并且maven在编译阶段抛出了编译错误。

如果我使用 myapp-model 和其他项目,我不依赖于正确的 myapp-interface。

我想知道是否可以构建一个罐子并将特定的 pom 放入其中?

【问题讨论】:

长解是正确的。那么问题是什么? 事实上它没有用。因为在我的 foo-server 和 foo-client 中,我没有删除一些接口。当我构建项目时,我面临一些编译错误。我将编辑我的问题来解释这个问题。 关于同一问题的老问题 [1]:mail-archive.com/users@maven.apache.org/msg102761.html 为什么缺少接口?在缺少接口之前它是如何工作的? 默认情况下,maven (m2eclipse) 使用没有分类器的 model.jar,所以一切都首先编译。但是当 maven 为每个配置文件重新运行打包时,他尝试再次编译。缺少的接口 => 我不想与客户端共享服务器端接口。谷歌搜索/口语/测试后没有任何解决方案。如果我真的不想共享接口,我需要两个 maven 模块。 【参考方案1】:

对于接口。

我什么也没做,只构建了两个interfaces.jar(客户端+服务器)。

对于模特 我将这两个 jar 作为可选导入

<dependency>
        <groupId>com.app</groupId>
        <artifactId>myapp-interfaces</artifactId>
        <version>$myapp-interfaces.version</version>
        <classifier>client</classifier>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>com.app</groupId>
        <artifactId>myapp-interfaces</artifactId>
        <version>$myapp-interfaces.version</version>
        <classifier>server</classifier>
        <optional>true</optional>
    </dependency>

这样我就可以构建两个模型的版本而不会出现任何错误。

在我的客户端应用程序和服务器应用程序中

对于每个应用程序,我都会创建对正确 interfaces.jar 和 models.jar 的依赖项

【讨论】:

我认为你混淆了分类器 - 一个应该是 client,另一个 - server

以上是关于使用分类器更改工件的 Maven 依赖项的主要内容,如果未能解决你的问题,请参考以下文章

如何使用不同的分类器在 Ivy 中下载多个 Maven 依赖项?

ivy(2.3.0 或 2.4)不使用分类器解析 SNAPSHOT maven 依赖项

为啥scala maven工件对每个scala版本都有一个工件,而不是每个scala版本都有一个分类器?

Maven JAR Plugin 3.0.2 错误:您必须使用分类器将补充工件附加到项目而不是替换它们

神器分类器元数据快照 maven 3.0

在 Zeppelin 中使用分类器指定依赖关系