feat: pom文件引入外部jar包

master
李小林 9 months ago
parent 70c0483c7f
commit cf0de8deda
  1. 24
      pom.xml

@ -178,6 +178,27 @@
<artifactId>velocity-engine-core</artifactId>
<version>${velocity.version}</version>
</dependency>
<dependency>
<groupId>com.zznode.cap</groupId>
<artifactId>capapi</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/capapi.jar</systemPath>
</dependency>
<dependency>
<groupId>com.zznode.itms</groupId>
<artifactId>orderapi</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/orderapi.jar</systemPath>
</dependency>
<dependency>
<groupId>com.zznode.itms</groupId>
<artifactId>resourceapi</artifactId>
<scope>system</scope>
<version>1.0</version>
<systemPath>${project.basedir}/lib/resourceapi.jar</systemPath>
</dependency>
</dependencies>
<build>
@ -186,6 +207,9 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>

Loading…
Cancel
Save