maven 创建项目的源码jar包

maven 创建项目的源码jar包

<!-- 自定义绑定:创建项目的源码jar包 -->
<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-source-plugin</artifactId>
	<version>2.1.1</version>
	<executions>
		<execution>
			<id>attach-sources</id>
			<phase>verify</phase>
			<goals>
				<goal>jar-no-fork</goal>
			</goals>
		</execution>
	</executions>
</plugin>

猜你喜欢

转载自injavawetrust.iteye.com/blog/2356416