将公共的代码抽离出来,打成公共的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 打包。

打包后的文件:

将公共的代码抽离出来,打成公共的lib包的方法_intellij-idea

将这个文件上传到maven私服上即可。

获取对应的maven依赖,就可加入到新的项目中


以上是关于将公共的代码抽离出来,打成公共的lib包的方法的主要内容,如果未能解决你的问题,请参考以下文章

Sciter 结合 PReact 实现组件公共逻辑抽离

laravel中抽离公共模版共用数据

laravel中抽离公共模版共用数据

导入第三方Jar包到Nexus私服

怎样获得在yarn框架上运行jar包的执行结果

在Vue中使用Swiper轮播图同时解决点击轮播图左右切换按钮不生效的问题同时将轮播图抽离出为一个公共组件