Maven 上传源码

来源:互联网 发布:赵孟頫书法软件 编辑:程序博客网 时间:2024/06/10 14:57

在pom.xml中配置如下:

<build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-source-plugin</artifactId><version>2.4</version><executions><execution><id>attach-sources</id><phase>deploy</phase><goals><goal>jar-no-fork</goal></goals></execution></executions></plugin></plugins></build>


0 0