我正在使用Redhat
,java 1.7
,maven 3.2.5
,jenkins 1.6
,git version 2.0.5
和nexus-2.12.0-01
我为内部开发创建了一个本地Nexus Repository
。
现在我要做的是,使用maven
和jenkins
构建Nexus Repository Manger Oss
项目。
我可以在没有Nexus Repository Manger Oss
的情况下构建我的项目。
注意:我使用父pom
因为我必须子项目。
以下是我遵循的步骤。
此处为setting.xml
的内容
<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">
<mirrors>
<mirror>
<!--This sends everything else to /public -->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/nexus/content/groups/public</url>
</mirror>
</mirrors>
<activeProfiles>
<!--make the profile active all the time -->
<activeProfile>nexus</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>nexus</id>
<repositories>
<repository>
<id>central</id>
<url>http://maven.apache.org</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://maven.apache.org</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<servers>
<server>
<id>releases</id>
<username>deployment</username>
<password>deployment123</password>
</server>
<server>
<id>snapshots</id>
<username>deployment</username>
<password>deployment123</password>
</server>
</servers>
</settings>
pom.xml
父级pom.xml
内容
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>parent</groupId>
<artifactId>A</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>Maven Webapp</name>
<!--url>http://maven.apache.org</url-->
<distributionManagement>
<repository>
<id>releases</id>
<url>http://localhost:8081/nexus/content/repositories/thirdparty/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc5</artifactId>
<version>11.2.0.1</version>
</dependency>
</dependencies>
<modules>
<module>subModule1</module>
<module>subModule2</module>
</modules>
</project>
&#13;
subModule1的pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.a</groupId>
<artifactId>a</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>Maven Webapp</name>
<distributionManagement>
<repository>
<id>releases</id>
<!-- CHANGE HERE by your team nexus server -->
<url>http://localhost:8081/nexus/content/repositories/thirdparty/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<!-- CHANGE HERE by your team nexus server -->
<url>http://localhost:8081/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
// dependecies are defined here
<dependencies>
&#13;
在subModule1和subModule2中,我添加了distributionManagement
部分。
但是当我构建我的项目时,我得到以下错误。
[错误]无法在项目子模块1上执行目标:无法执行 解决项目子模块1的依赖关系:war:1.0-SNAPSHOT:失败 找到com.oracle:ojdbc5:jar:11.2.0.1 in https://repo.maven.apache.org/maven2被缓存在当地 存储库,在更新之前不会重新尝试解析 中心间隔已经过去或强制更新 - > [帮助1]
我理解错误是由com.oracle:ojdbc5:jar:11.2.0.1
jar依赖项无法解析引起的。
但我很惊讶它为什么不从我当地的nexus存储库中提取它。
我是否错过了任何配置,或者我是否以错误的方式进行了配置?
如何在项目中使用本地nexus存储库?
答案 0 :(得分:0)
在settings.xml中,通常在〜/ .m2 /目录中,您需要指定本地Nexus。默认情况下,你只能获得maven中心。
<profile>
<id>local</id>
<repositories>
<repository>
<id>nexus</id>
<name>libs-release</name>
<url>http://url to your local Nexus/artifactory/libs-release</url>
</repository>
</repositories>
</profile>
您可以根据需要添加任意数量的存储库元素。
确保在settings.xml底部有正确的配置文件
<activeProfiles>
<activeProfile>local</activeProfile>
</activeProfiles>
此外,您将在〜/ .m2 / repository / com / oracle ...文件夹中留下一个存根。我总是做一个rm -r~ / .m2 / repository / com / oracle来强制它从远程仓库下载。
答案 1 :(得分:0)
您的settings.xml未正确覆盖中央存储库配置。可以在documentation中找到正确的设置。
还有example projects可用,一切准备就绪,eval guide包含分步指南。
答案 2 :(得分:0)
这是我的settings.xml文件-
<localRepository>C:/Users/shuarya/.m2/repository</localRepository>
<interactiveMode>true</interactiveMode>
<offline>false</offline>
<pluginGroups>
</pluginGroups>
<proxies>
</proxies>
<servers>
</servers>
<mirrors>
<mirror>
<!--This sends everything else to /public -->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://localhost:8081/nexus/content/repositories/com.shubham.TestNexus2</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>
因此,在我的settings.xml文件中,我指定了本地存储库的路径,并且在底部,我将活动配置文件选择为nexus。在nexus节点中,我指定了本地托管的nexus存储库的路径。
而且,我没有在pom.xml中指定任何URL
<modelVersion>4.0.0</modelVersion>
<groupId>com.shubham.example</groupId>
<artifactId>TestingNexusrepo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.shubham.TestNexus</groupId>
<artifactId>TestNexus</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>com.shubham.TestNexus2</groupId>
<artifactId>TestNexus2</artifactId>
<version>1</version>
</dependency>
</dependencies>
</project>
在构建项目时,它将从存储库下载jar并将其保存在本地存储库路径中。这样,将来您指定此(相同)依赖项时,它将从本地存储库中获取该依赖关系,而不是从Nexus存储库中再次下载(缓存)。
这对我有用,如果我的理解错误,请让我知道。
此外,有什么方法可以为nexus存储库指定多个URL。
请帮助。