如何向Maven添加LIRE依赖?

时间:2014-01-20 10:47:15

标签: java maven dependencies pom.xml

我需要在Maven中导入lire依赖项,但我无法在Maven Central Repository中找到它。 如何将它添加到我的pom中?

1 个答案:

答案 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>