赞
踩
将自己的本地jar包放在*/resources/libs/
路径下
<dependency>
<groupId>test</groupId>
<artifactId>test-json</artifactId>
<version>20121212</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/libs/json-20121212.jar</systemPath>
</dependency>
<build>
<finalName>service-test</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。