怎么发布一个pom项目且打包maven源码,将源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么发布一个pom项目且打包maven源码,将源相关的知识,希望对你有一定的参考价值。
参考技术A 在pom.xml中添加:<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
配置中指定了phase为compile,意思是在生命周期compile的时候就将源文件打包,即只要执行的mvn命令包括compile这一阶段,就会将源代码打包。同样,phase还可以指定为package、install等等。
以上是关于怎么发布一个pom项目且打包maven源码,将源的主要内容,如果未能解决你的问题,请参考以下文章
已有esclipse现成项目,怎么把MAVEN添加进去.添加个POM.XML文件 ,让他能进行打包. 求高手详解,解决后加分