0
我需要在Maven上導入lire依賴,但我無法在Maven Central Repository上找到它。 我如何將它添加到我的POM?如何將LIRE依賴項添加到Maven?
我需要在Maven上導入lire依賴,但我無法在Maven Central Repository上找到它。 我如何將它添加到我的POM?如何將LIRE依賴項添加到Maven?
你必須import jar manually to mvn repository:
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id>
-DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
,然後你的POM中引用它:
<dependency>
<groupId>group-id</groupId>
<artifactId>artifact-id</artifactId>
<version>version</version>
<type>jar</type>
</dependency>