提交 611e4a1d 作者: obcy

添加源码打包

上级 ee3a5be8
......@@ -47,4 +47,26 @@
<url>http://114.115.159.144:8065/repository/maven-releases/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<!--源码打包配置-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<!-- 绑定source插件到Maven的生命周期 -->
<id>attach-sources</id>
<phase>package</phase>
<!--在生命周期后执行绑定的source插件的goals -->
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论