当前位置:   article > 正文

maven引入本地jar包_maven引入本地jar包,路径在resources/libs/下面

maven引入本地jar包,路径在resources/libs/下面

将自己的本地jar包放在*/resources/libs/路径下

pom.xml依赖添加
<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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
pom.xml的<build><plugins><plugin>标签下添加
<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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/308110
推荐阅读
相关标签
  

闽ICP备14008679号