我在澄清这个问题时遇到了一些麻烦,所以我会尽量抽出尽可能多的无关细节。如果需要更多细节请询问。
我有一个包含pom的项目,该pom包含一个依赖项,当用户在该pom上执行mvn clean install
时,该依赖项始终下载并解压缩到目录中。但是,当用户传入mvn clean install -Dcontent=false
之类的属性但在该pom中执行其他所有操作时,我想放弃下载和解压缩该依赖项。
由于缺乏更好的说法,我想知道如何在maven中使某个依赖项可选?在这里描述的意义上不是可选的: http://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html
但在构建时可选,如上所述。
编辑:
构建步骤
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>unpack</id>
<phase>compile</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.company.random</groupId>
<artifactId>content</artifactId>
<version>${contentVersion}</version>
<type>zip</type>
<outputDirectory>contentdir/target</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugins>
</build>
@Mikita目前这将始终执行,我怎样才能在-Dcontent=true
答案 0 :(得分:2)
您可以使用maven个人资料执行此操作。在示例中,如果在content
中设置了属性content
,则会有true
个配置文件进行激活。只有在这种情况下才会下载poi
依赖,否则不会。
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.stackoverflow</groupId>
<artifactId>profile-question</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>War application with optional dependencies</name>
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>jmespath-java</artifactId>
<version>1.11.197</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>content</id>
<activation>
<property>
<name>content</name>
<value>true</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.7</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>
只有在您使用以下命令时才会下载poi:mvn clean install -Dcontent=true
。如果您不指定content
参数或在false
中设置它,则只会从主依赖块中仅加载jmespath-java
。
希望这会有所帮助。