我通过 mvn install:install-file 在我的本地Maven存储库中添加了一个jar文件,该文件在我的本地计算机上运行良好。这是我pom中的依赖项:
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>${oracle.connector.version}</version>
</dependency>
在我的计算机上运行mvn clean install时,一切正常。 现在,我有一个运行在Windows机器上的本地jenkins实例,该实例应该可以构建我的项目。构建遇到错误,詹金斯说:
Could not find artifact com.oracle:ojdbc6:jar:11.2.0 in mirror1 (http://repo.maven.apache.org/maven2) -> [Help 1]
<?xml version="1.0" encoding="UTF-8" ?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=
"http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/
settings-1.0.0.xsd">
<localRepository>${user.home}/.m2/repository</localRepository>
<servers>
<server>
<id>nexusReleases</id>
<username>deployment</username>
<password>deployment123</password>
</server>
<server>
<id>nexusSnapshots</id>
<username>deployment</username>
<password>deployment123</password>
</server>
</servers>
<mirrors>
<mirror>
<id>mirror1</id>
<mirrorOf>*</mirrorOf>
<name>Maven2 official repo</name>
<url>http://repo.maven.apache.org/maven2</url>
</mirror>
<mirror>
<!--This sends everything else to /public -->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/repository/maven-public/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>nexus</id>
<!--Enable snapshots for the built in central repo to direct -->
<!--all requests to nexus via the mirror -->
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<!--make the profile active all the time -->
<activeProfile>nexus</activeProfile>
</activeProfiles>
</settings>
当然,我已经仔细检查了.m2中的存储库目录。 ojdbc6.jar就在那里。
那我的设置怎么了?
答案 0 :(得分:1)
您可能想检查一下Jenkins用作本地存储库的情况。
转到Jenkins verwalten
(管理詹金斯)
在Maven-Projekt-Konfiguration
(Maven项目配置)下,应该有一个设置用于Jenkins的.m2存储库。
如果这与您在本地使用的存储库不同,则可以解释您的错误。
编辑:每个作业还有一个选项,无论是否使用“专用存储库”。该存储库将特定于该作业,并且不会与其他任何存储库共享工件。
答案 1 :(得分:0)
我对ojdbc8.jar有同样的问题。编译失败,并在我的pom.xml中具有此依赖性。
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc8</artifactId>
<version>19.3</version>
</dependency>
我将ojdbc8.jar复制到Jenkins maven存储库。将其重命名为ojdbc8-19.3.jar后,我的构建成功。
也许这对别人有帮助。
答案 2 :(得分:0)
使用以下依赖项:
<dependency>
<groupId>com.oracle.ojdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>19.3.0.0</version>
</dependency>