如何仅部署项目的子模块? 我有一个项目;
ProjectA
- Submodule B
- Submodlue C
- Submodule D
子模块打包为jar并部署到maven仓库中,怎么只能将子模块部署到maven仓库而不部署到主项目中?
将其放入您不想部署的模块(或模块的 pom.xml)中:
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
由于这是由子模块继承的,因此您必须将其放入您想要部署的子模块中:
<properties>
<maven.deploy.skip>false</maven.deploy.skip>
</properties>
另一个建议可以执行以下操作:
mvn deploy -pl SubModuleB
这对我有用。与其他答案类似,只是添加了缺少的插件元素。添加到父 POM。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
您可以使用我博客中描述的技术。
在这种情况下,您可以禁用根目录中的
default-deploy
(或名称)pom.xml
:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<id>default-deploy</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
然后为子模块启用它:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
这对我来说很有效
将插件声明放在父pom中,skip=true,但设置inherited=false。
这可以防止在每个子模块上重复
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
<inherited>false</inherited>
</plugin>
您可以在模块的 POM 中配置 maven-deploy-plugin 以将其从部署中排除:
<build>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.4</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
...
</build>