mavensystempath,加载本地jar 当引⽤第三⽅包,且没有源代码时候,可以使⽤system path
maven打包本地jar包<dependency>
<groupId>ctec</groupId>
<artifactId>xxx-core</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/libs/ctec-xxx-core.jar</systemPath>
</dependency>
仅这样做,并不能将jar包含到war中,需要使⽤<includeSystemScope>true</includeSystemScope>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
常见内置变量
${basedir} 项⽬根⽬录
${project.build.directory} 构建⽬录,缺省为target
${project.build.outputDirectory} 构建过程输出⽬录,缺省为target/classes
${project.build.finalName} 产出物名称,缺省为${project.artifactId}-${project.version}
${project.packaging} 打包类型,缺省为jar
${} 当前pom⽂件的任意节点的内容

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。