- 在pom.xm文件中增加以下配置
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin>
在项目根目录下运行以下命令:
mvn clean source:jar install -Dmaven.test.skip=true
时间: 2024-10-09 06:36:35