maven打包上传到私服:
maven是版本控制工具:在实际使用过程中我们会遇到把工具类jar包上传到maven私服的问题。
操作步骤:
假设要 deploy releases版本的项目
第一步:查看私服界面相关信息:
第二步:将 distributionManagement 的一整块,放到要被 deploy 的项目的 pom.xml 中
第三步:setting.xml测试:
部署snapshots和上述方式类似:大家可以试一下:
第四步:测试发布jar包到私服:
补充:如果想打包源码到私服上:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>