<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>配入pom.xml中
在pom.xml中配置ApacheMavenPlugins的maven-source-plugin,版本为3.0.1,执行名为attach-sources的阶段,在verify阶段生成不启动新进程的jar文件。
1503

被折叠的 条评论
为什么被折叠?



