我有一个带有两个分类器的pom.xml文件。 Maven使用项目中的所有文件生成“WAR”,仅使用我选择的文件夹生成“JAR”。
但是,我不知道如何指出POM中包含的依赖项仅对应于“WAR”文件的情况。 “JAR”中的类没有依赖关系。
这对我来说是一个问题,因为如果我将“JAR”添加为其他项目的依赖项,Maven将查找所有依赖项,有时会创建循环依赖项。
这是我的pom.xml:
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>my.group.id</groupId>
<artifactId>myartifactid</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>name</name>
<description>description</description>
<dependencies>
<dependency>
<groupId>a.dependency.groupid</groupId>
<artifactId>articfact1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>all</classifier>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1.redhat-4</version>
</dependency>
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>pojos</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
<configuration>
<classifier>pojos</classifier>
<includes>
<include>my/project/pojos/*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
这就是我在其他项目中添加依赖项的方式,只包括pojos JAR:
<dependency>
<groupId>my.group.id</groupId>
<artifactId>myartifactid</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>pojos</classifier>
</dependency>
谢谢!
答案 0 :(得分:1)
那实际上不是&#39; maven&#39;做正确的事。 你应该有一个包含那些pojos的jar项目的pom.xml。
你应该为war项目另一个pom.xml,它将第一个项目作为依赖项。
即使可以,也不应该在1 pom中创建多个不同的工件。 正如您所看到的,它会导致逻辑问题。