Maven 打包将 system 的文件添加到 war 中
文章背景
基础姿势
下面添加一个解决依赖冲突的办法,这个是题外话。
<!-- 这里是举个栗子,我们在添加别人写好的工具类的时候,会自动依赖很多jar,并且和项目本身的jar有冲突,用这个可以解决。其他是本地一定有引用这个jar文件 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
解决办法
这边先给出spring-boot-maven-plugin的配置,至于能不能将本地 jar 打入 war 中自己测试(实践出真知):
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
以下是我本地使用的百度的UE编辑器的jar
<!-- 百度的编辑器,这个在自己的私服上面,如果要使用的话需要配置 -->
<dependencies>
<dependency>
<groupId>com.baidu</groupId>
<artifactId>ueditor</artifactId>
<version>1.1.2</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/ueditor-1.1.2.jar</systemPath>
</dependency>
</dependencies>
<!-- 记得这个地方要添加版本的,反正我很奇怪没有添加版本是正常运行了 -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<directory>${project.basedir}/libs</directory>
<targetPath>WEB-INF/lib</targetPath>
<filtering>true</filtering>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>