码迷,mamicode.com
首页 > 编程语言 > 详细

spring boot 项目打包到maven仓库供其它模块使用

时间:2018-02-08 13:40:40      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:apache   framework   maven仓库   仓库   pac   compiler   UI   服务   gpo   

在对spring boot项目进行打包发布的时候发现其它spring boot项目服务真正引用使用该spring boot包中的类

需对打包插件做如下修改:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

spring boot 中默认为:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

spring boot 项目打包到maven仓库供其它模块使用

标签:apache   framework   maven仓库   仓库   pac   compiler   UI   服务   gpo   

原文地址:https://www.cnblogs.com/HanShisi/p/8430808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!