maven deploy的时候,让指定的子项目不上传

有个父级项目A,有子项目B、C,如果在项目A上面deploy的时候,不想上传B到仓库中,可以在子项目B中的pom文件加上以下配置:

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-deploy-pluginartifactId>
                <configuration>
                    <skip>trueskip>
                configuration>
            plugin>
        plugins>
    build>

你可能感兴趣的:(maven,maven)