使用java将工件部署到Nexus

时间:2013-07-03 11:41:51

标签: java maven nexus artifacts

如何使用java将工件部署到Nexus存储库。有没有这方面的API。
我在本地机器上配置了nexus。我需要使用java在其中部署工件。是否有任何文档或链接。

2 个答案:

答案 0 :(得分:7)

警告:以太不在了,项目由Eclipse归档并交还给ASF。它现在称为Maven Artifact Resolver下面的示例仍然适用。


我过去曾使用过Eclipse Aether(正式的Sonatype Aether):

  

Aether是一个用于处理工件存储库的库。 Aether处理本地存储库,远程存储库,开发人员工作空间,工件传输和工件解析的规范。

例如,您可以将工件部署到远程存储库:

RepositorySystem system = Booter.newRepositorySystem();
RepositorySystemSession session = Booter.newRepositorySystemSession( system );

Artifact jarArtifact = new DefaultArtifact( "test", "org.eclipse.aether.examples", "", "jar", "0.1-SNAPSHOT" );
jarArtifact = jarArtifact.setFile( new File( "src/main/data/demo.jar" ) );

Artifact pomArtifact = new SubArtifact( jarArtifact, "", "pom" );
pomArtifact = pomArtifact.setFile( new File( "pom.xml" ) );

RemoteRepository distRepo =
    new RemoteRepository.Builder( "org.eclipse.aether.examples", "default",
                          new File( "target/dist-repo" ).toURI().toString() ).build();

DeployRequest deployRequest = new DeployRequest();
deployRequest.addArtifact( jarArtifact ).addArtifact( pomArtifact );
deployRequest.setRepository( distRepo );

system.deploy( session, deployRequest );

请查看their example codedocumentation了解详情。

答案 1 :(得分:0)

如果您正在使用maven,那么您可以使用mvn deploy命令来执行此操作。确保在pom.xml或settings.xml中列出了nexus存储库。