将公共的代码抽离出来,打成公共的lib包的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将公共的代码抽离出来,打成公共的lib包的方法相关的知识,希望对你有一定的参考价值。
第一步:编辑pom.xml的
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>lib</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>lib</classifier>
<excludes>
<exclude>application.properties</exclude>
<exclude>com/geexek/htabletemplate/HtabletemplateApplication.class</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
注意:这里要排除application.properties和com/geexek/htabletemplate/HtabletemplateApplication.class 打包。
打包后的文件:
将这个文件上传到maven私服上即可。
获取对应的maven依赖,就可加入到新的项目中
以上是关于将公共的代码抽离出来,打成公共的lib包的方法的主要内容,如果未能解决你的问题,请参考以下文章