有很多与
相关的问题<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-aether</artifactId>
<version>0.9</version>
</dependency>
当我需要从远程仓库获取工件时,它非常有效。 不幸的是,我无法找到一种方法来迫使以太从当地的回购中获取神器。
打印到控制台:
2014-07-21 18:11:40 ERROR MethodValidator.error: - JSR-303 validator failed to initialize: Unable to create a Configuration, because no Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath. (see http://www.jcabi.com/jcabi-aspects/jsr-303.html)
2014-07-21 18:11:40 INFO NamedThreads.info: - jcabi-aspects 0.7.22/fd7496f started new daemon thread jcabi-loggable for watching of @Loggable annotated methods
2014-07-21 18:11:41 WARN LogTransferListener.warn: - #transferFailed('GET FAILED https://my.remote.repo/nexus/cont..243..tory-uploader-1.0.0-${revision.suffix}.pom'): in 29µs
2014-07-21 18:11:41 WARN LogTransferListener.warn: - #transferFailed('GET FAILED http://repo.maven.apache.org/maven2/ru..220..tory-uploader-1.0.0-${revision.suffix}.pom'): in 21µs
2014-07-21 18:11:41 ERROR Aether.error: - #resolve(my.group.id:my-artifact-i-want-to-get:groovy:installer:1.0.0-SNAPSHOT, 'runtime', org.sonatype.aether.util.filter.ScopeDependencyFilter@9076fc75): thrown org.sonatype.aether.resolution.DependencyResolutionException(failed to load 'my.group.id:my-artifact-i-want-to-get:groovy:installer:1.0.0-SNAPSHOT (runtime)' from ["shared-nexus (https://my.remote.repo/nexus/content/groups/all-repos/, releases+snapshots) with kyc.developer", "central (http://repo.maven.apache.org/maven2, releases) without authentication"] into /home/ssa/.m2/repository) out of com.jcabi.aether.Aether#fetch[198] in 166ms
2014-07-21 18:11:41 ERROR Aether.error: - #resolve(my.group.id:my-artifact-i-want-to-get:groovy:installer:1.0.0-SNAPSHOT, 'runtime'): thrown org.sonatype.aether.resolution.DependencyResolutionException(failed to load 'my.group.id:my-artifact-i-want-to-get:groovy:installer:1.0.0-SNAPSHOT (runtime)' from ["shared-nexus (https://my.remote.repo/nexus/content/groups/all-repos/, releases+snapshots) with kyc.developer", "central (http://repo.maven.apache.org/maven2, releases) without authentication"] into /home/ssa/.m2/repository) out of com.jcabi.aether.Aether#fetch[
神器是在本地回购,但是以太没有找到它...... 我做错了什么?
我的代码: 列表 remoteRepos ,文件 localRepoRoot 是从maven插件“注入”的。该类用于maven-plugin。
MavenHelperAether(List<RemoteRepository> remoteRepos, File localRepoRoot) {
this.remoteRepos = remoteRepos
this.localRepoRoot = localRepoRoot
}
/**
* Resolves artifact using artifact coordinates
* @param artifactCoords is an artifact you need
* @param remoteLookup is ignored. It's a part of backward compatibility.
*
* @return {@link File} pointing to artifact
* */
public File resolveArtifact(String artifactCoords, boolean remoteLookup = false){
LOG.debug("resolving artifact $artifactCoords ... using localRepo[$localRepoRoot.absolutePath] and remoteRepos [$remoteRepos]")
def aether = new Aether(remoteRepos, localRepoRoot)
def artifact = new DefaultArtifact(artifactCoords)
Collection<Artifact> deps = []
try{
deps = resolveInRemoteRepositories(aether, artifact)
LOG.debug("Resolved artifact path ${deps.iterator().next().file.absolutePath }")
return deps.iterator().next().file
}
catch (DependencyResolutionException | IllegalArgumentException e){
LOG.warn("Can't fetch $artifact from remote repos. Falling back to local repository...", e)
def localArtifact = resolveInLocalRepo(artifact)
if(localArtifact.exists()){
return localArtifact;
}else{
throw new InstallerException("Can't locate artifact [$artifact] in local repo using path [$localArtifact.absolutePath]")
}
}
}
private Collection<Artifact> resolveInRemoteRepositories(Aether aether, DefaultArtifact artifact){
LOG.debug("Trying to resolve $artifact in remote repositories...")
aether.resolve(artifact,JavaScopes.RUNTIME)
}
private File resolveInLocalRepo(DefaultArtifact artifact){
LOG.debug("Trying to resolve $artifact in local repository...")
def localRepoManager = new SimpleLocalRepositoryManager(localRepoRoot)
new File(localRepoManager.getPathForArtifact(artifact, true))
}
答案 0 :(得分:2)
看看这段代码:
Aether默认使用本地存储库,因此如果不需要,只需设置为不使用remote:
DefaultRepositorySystemSession session = MavenRepositorySystemUtils.newSession()
session.setUpdatePolicy(RepositoryPolicy.UPDATE_POLICY_NEVER)
答案 1 :(得分:1)
我不能说这是好还是坏,但我已经使用过这段代码,它有效:
private File resolveInLocalRepo(DefaultArtifact artifact){
LOG.debug("Trying to resolve $artifact in local repository...")
def localRepoManager = new SimpleLocalRepositoryManager(localRepoRoot)
def pathToLocalArtifact = localRepoManager.getPathForLocalArtifact(artifact)
LOG.debug("pathToLocalArtifact: [$pathToLocalArtifact]")
new File("$localRepoRoot.absolutePath/$pathToLocalArtifact")
}
localRepoRoot 是指向本地仓库根目录的文件。
答案 2 :(得分:1)
您可以创建本地远程仓库并将其提供给请求:
RemoteRepository local = new RemoteRepository.Builder("local", "default", "file:c:/Users/blah/.m2/repository").build(); RemoteRepository central = new RemoteRepository.Builder("central", "default", "http://central.maven.org/maven2/").build(); collectRequest.setRepositories( Arrays.asList(local, central));