Maven如何优雅的引入本地jar包,
分享于 点击 39499 次 点评:113
Maven如何优雅的引入本地jar包,
<dependency>
<groupId>org.zstack</groupId>
<artifactId>zstack-sdk</artifactId>
<version>3.4.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/zstak-sdk-3.4.0.jar</systemPath>
<dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
相关文章
- 暂无相关文章
用户点评