maven学习-项目打成源码jar包上传私库

时间:2021-07-25 09:11:34

前言:打源码包,让别人更容易看懂你写的代码

1.在pom.xml中加入这句话

<build>
<plugins>
<!-- 要将源码放上去,需要加入这个插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>


2.用cmd命令到你的项目文件夹(打包第一种办法)

执行:mvn clean deploy


2.在eclipse中输入该语句(打包第二种办法)

.maven学习-项目打成源码jar包上传私库


完成了,快去私库看下你成功了没