调整到可以正常打包

This commit is contained in:
杨朝晖
2021-01-10 14:00:55 +08:00
parent a5eb082efa
commit 6fa352c50b
4 changed files with 22 additions and 12 deletions

View File

@@ -104,7 +104,7 @@
<artifactId>DmJdbcDriver</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/DmJdbcDriver-1.0.0.jar</systemPath>
<systemPath>${pom.basedir}/libs/DmJdbcDriver-1.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
@@ -116,7 +116,7 @@
<artifactId>pinyin4j</artifactId>
<version>2.5.0</version>
<scope>system</scope>
<systemPath>${basedir}/libs/pinyin4j-2.5.0.jar</systemPath>
<systemPath>${pom.basedir}/libs/pinyin4j-2.5.0.jar</systemPath>
</dependency>
</dependencies>
@@ -134,6 +134,14 @@
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>