我在pom.xml中做了一个依赖:
<properties>
<tibero-version>5.0</tibero-version>
</properties>
<dependency>
<groupId>com.tmax.tibero</groupId>
<artifactId>tibero5-jdbc</artifactId>
<version>${tibero-version}</version>
</dependency>
我将tibero5-jdbc.jar复制到文件夹~/.m2/repository/com/tmax/tibero/tibero5-jdbc/5.0/
然而,maven只是查找tibero5-jdbc-5.0.jar。 如何更正此问题以便在该文件夹中查找JAR?
答案 0 :(得分:1)
做maven手册install
mvn install:install-file -Dfile =&lt; jarfiledirectory&gt; \ tibero5-jdbc-5.0.jar -DgroupId = com.tmax.tibero -DartifactId = tibero5-jdbc -Dversion = 5.0 -Dpackaging = jar