Maven中source插件的使用及其注意问题

       使用source插件,可以使我们在package打包过程中也打包项目源码。使用source插件,需要我们在 pom.xml 中添加配置:

<span style="font-size:18px;"><build>
  	<!-- 打包源码的插件 -->
  	<plugins>
  		<plugin>
  			<groupId>org.apache.maven.plugins</groupId>
  			<artifactId>maven-source-plugin</artifactId>
  			<version>2.4</version>
  			
  			<!-- 进行package命令时就可以将源码同时进行打包 -->
  			<!-- 所以我们需要绑定source插件到我们default生命周期的package阶段 -->
  			<executions>
  				<execution>
  					<!-- 定义一个阶段,这个阶段是package -->
  					<phase>package</phase>
  					<goals>
  						<goal>jar-no-fork</goal>
  					</goals>
  				</execution>
  			</executions>
  		</plugin>
  	</plugins>
  </build></span>

       添加配置后,在eclipse中 对 pom.xnl 右键,选择 Run as -> Maven build...

       在 Goals 中输入 clean package,点击Run后可能会出现如下错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project hi: Fatal error compiling: tools.jar not found: F:\Program Files\Java\jre8\..\lib\tools.jar -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException


       解决方式:

选择菜单中 Window -> Preferences

选择 Add...

点击 Next,然后选择 JDK 所在目录路径,点击完成:

勾选刚创建的JRE目录,点击OK:


再次执行 clean package 命令:

成功运行,并且成功打包出项目源码。如下:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值