`

maven 打原码包

阅读更多

          maven打原码包需要插件(注意 绑定的生命周期 不能是install 不然 原码包不能插入到 本地manve仓库):

<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>3.0.1</version>
				<configuration>
					<attach>true</attach>
				</configuration>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics