Nexus ,maven xml 配置项记录:
你不想上传的子模块的pom中 ,添加到<project><build><plugins> 标签下添加如下配置 即可忽略该子模块deploy
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
今天吃了大亏