我有一个maven多模块项目,如下所示。
Parent
|_ pom.xml
|_ module1
| |_ pom.xml
|_ module2
|_ pom.xml
我有一个我想在父级别执行的maven配置文件,module1和module2不应该执行此配置文件。我如何实现这一目标?
答案 0 :(得分:0)
像这样创建你的父/ pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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>org.example</groupId>
<artifactId>aggregator</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>aggregator</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>profile1</id>
<modules>
<module>module1</module>
</modules>
</profile>
<profile>
<id>profile2</id>
<modules>
<module>module2</module>
</modules>
</profile>
</profiles>
</project>
使用此命令行运行maven以分别在profile1和profile2中安装模块
mvn install -P profile1
这项工作对我来说是运行maven 3.1.1
要改善您的个人资料定义,您应该查看Maven - Introduction to build profiles