MAVEN

<distributionManagement>
        <repository>
            <id>releases-repo</id>
            <name>Internal Releases</name>
            <url>http://${nexus.proxy.location}/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>snapshot-repo</id>
            <name>Development Snapshot</name>
            <url>http://${nexus.proxy.location}/nexus/content/repositories/snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-deploy-plugin</artifactId>
   <version>2.8.2</version>
     <configuration>
        <skip>true</skip>
    </configuration>
</plugin>
原文地址:https://www.cnblogs.com/jpit/p/7562456.html