我需要在Maven中导入lire依赖项,但我无法在Maven Central Repository中找到它。 如何将它添加到我的pom中?
答案 0 :(得分:2)
您必须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>