<dependency>
<groupId>XXX</groupId>
<artifactId>com.XXX.XXX</artifactId>
<version>0.0.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/XXX-0.0.2-SNAPSHOT.jar</systemPath>
</dependency>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
<mainClass>com.XXX.XXX.XXX</mainClass>
</configuration>
</plugin>
</plugins>
</build>
网友评论