在使用Maven在我们的Hudson构建服务器上构建项目时,我需要javax.comm库。在我的项目pom.xml文件中,我有这样的依赖:
<dependency>
<groupId>javax.comm</groupId>
<artifactId>comm</artifactId>
<version>2.0.3</version>
</dependency>
如果我包含了存储库,我还会在某处读到javax lib会更好运。
<repository>
<id>java.net repository</id>
<url>http://download.java.net/maven/2</url>
</repository>
我做了。我的其他pom.xml非常标准和简约。
当我尝试在构建服务器上构建时,我得到:
Downloading: [company repo]/content/groups/public//javax/comm/comm/2.0.3/comm-2.0.3.jar
[INFO] Unable to find resource 'javax.comm:comm:jar:2.0.3' in repository java.net repository (http://download.java.net/maven/2)
Downloading: [company repo]/content/groups/public//javax/comm/comm/2.0.3/comm-2.0.3.jar
[INFO] Unable to find resource 'javax.comm:comm:jar:2.0.3' in repository central (http://repo1.maven.org/maven2)
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) javax.comm:comm:jar:2.0.3
Try downloading the file manually from:
http://www.sun.com/download/products.xml?id=43208d3d
Then, install it using the command:
mvn install:install-file -DgroupId=javax.comm -DartifactId=comm -Dversion=2.0.3 -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=javax.comm -DartifactId=comm -Dversion=2.0.3 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) com.siriusit.fisherysolution.inmcsim:InmCSim:jar:1.0-SNAPSHOT
2) javax.comm:comm:jar:2.0.3
----------
我做错了什么?
-edit -
我最终从Oracle下载了java comm lib,并让我们的Maven管理员将它安装在我们的本地存储库中。 正如下面的答案所指出的,由于Oracle(以及之前的Sun)的许可限制,java comm lib在公共存储库中不可用。
答案 0 :(得分:10)
如果您看一下here,在“官方”Maven 2存储库中,您会在库的pom.xml
文件中看到:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>javax.comm</groupId>
<artifactId>comm</artifactId>
<version>2.0.3</version>
<name>Java Communications API</name>
<description>
The Java Communications API is a Java extension that facilitates developing platform-independent
communications applications for technologies such as Smart Cards, embedded systems, and point-of-sale
devices, financial services devices, fax, modems, display terminals, and robotic equipment.
</description>
<url>http://java.sun.com/products/javacomm/</url>
<distributionManagement>
<downloadUrl>http://www.sun.com/download/products.xml?id=43208d3d</downloadUrl>
</distributionManagement>
<dependencies></dependencies>
</project>
这意味着您应该自己下载库(URL在<downloadUrl>
标记中提供),然后install it on your local repository(甚至更好,在企业存储库中部署它)。
有时会出现一些无法直接下载的库(Oracle JDBC驱动程序是另一个例子),这主要是因为特定的许可证......
答案 1 :(得分:4)
公共存储库中没有jar,可能是出于许可的原因。
下载Communication API并使用
进行部署mvn deploy:deploy-file -DgroupId=javax.comm -DartifactId=comm \
-Dversion=2.0.3 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] \
-DrepositoryId=[id]
答案 2 :(得分:3)
实际上maven没有在公共回购中找到它......
[INFO]无法在存储库java.net存储库中找到资源'javax.comm:comm:jar:2.0.3'(http://download.java.net/maven/2) ... [INFO]无法在资源库中心找到资源'javax.comm:comm:jar:2.0.3'(http://repo1.maven.org/maven2)
您必须从任何来源下载它,并将其安装在本地存储库中:
mvn install:install-file -DgroupId=javax.comm -DartifactId=comm -Dversion=2.0.3 -Dpackaging=jar -Dfile=/path/to/file
或将其部署到您的公司存储库(如果有的话):
mvn deploy:deploy-file -DgroupId=javax.comm -DartifactId=comm -Dversion=2.0.3 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
答案 3 :(得分:1)
由于许可限制,javax.comm软件包在任何公共存储库中都不可用,请参阅此处以获取进一步的详细信息:
http://repo1.maven.org/maven2/javax/comm/comm/2.0.3/comm-2.0.3.pom
POM还为您提供下载URL。您应该使用提供的链接下载jar:
http://www.sun.com/download/products.xml?id=43208d3d
并将其放在公司存储库服务器中的“/javax/comm/comm/2.0.3/
”中,像artifactory这样的服务器为此提供了一个Web前端。
如果您没有存储库服务器,可以将其放在主文件夹的.m2/repository
目录中。在那里创建一个目录“/javax/comm/comm/2.0.3/
”,并将第一个链接和下载的jar放在此文件夹中。但这只适用于您的本地机器。
答案 4 :(得分:0)
您还可以在源代码管理中添加工件,并使用maven-install-plugin在构建之前安装它,如解释here所述。