日常开发一个小项目或在企业中开发项目时,Maven管理项目是很好的一个选择;
项目所需的依赖包,项目的打包安装,都很方便也提高了开发人员操作效率。
然它也会带来使用上的成本,所以对于需要使用的功能进行一个记录,方便下次更方便的使用。
Maven插件:打包第三方jar包
<!-- spring-boot-maven-plugin (提供了直接运行项目的插件:如果是通过parent方式继承spring-boot-starter-parent则不用此插件) -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
<includeSystemScope>true</includeSystemScope><!--引入第三方jar包-->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
</goals>
</execution>
</executions>
</plugin>
Maven安装请参考
博主真是太厉害了!!!
怎么收藏这篇文章?
不错不错,我喜欢看
哈哈,感谢留言