7

我在maven-deploy远程仓库上使用命令部署插件时遇到问题。我安装了最新版本的 Release 插件(2.0.2)。

我收到此错误:

| Loading Grails 2.0.4
| Configuring classpath.
| Environment set to development.....
| Packaging Grails application.....
| Compiling 33 GSP files for package [myPackage].....
| Plugin packaged grails-plugin-myPlugin.jar
| Skipping POM generation because 'pom.xml' exists in the root of the project..
| Error Error executing script MavenDeploy: : Error downloading wagon provider from the remote repository: Missing:
----------
1) org.apache.maven.wagon:wagon-http:jar:1.0-beta-2
Try downloading the file manually from the project website.
Then, install it using the command: 
  mvn install:install-file -DgroupId=org.apache.maven.wagon -DartifactId=wagon-http -Dversion=1.0-beta-2 -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there: 
  mvn deploy:deploy-file -DgroupId=org.apache.maven.wagon -DartifactId=wagon-http -Dversion=1.0-beta-2 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency: 
1) unspecified:unspecified:jar:0.0
2) org.apache.maven.wagon:wagon-http:jar:1.0-beta-2
----------
1 required artifact is missing.

for artifact: 
 unspecified:unspecified:jar:0.0
from the specified remote repositories:
 central (http://repo1.maven.org/maven2)
(Use --stacktrace to see the full trace)

谢谢你的帮助

4

3 回答 3

1

我有同样的问题,可以这样处理:

这足以解决您的问题。

如果您的 Maven 服务器需要身份验证,您可以按照此处此处的说明进行操作

~/.m2/settings.xml:

<settings>
  <proxies>
   <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxyserver.mydomain.com</host>
      <port>8080</port>
      <username>user</username>
      <password>pass</password>
      <nonProxyHosts>*.bla.com.br|*.blabla.biz</nonProxyHosts>
    </proxy>
  </proxies>
  <servers>
    <server>
      <id>myrepo</id>
      <username>user</username>
      <password>pass</password>
    </server>
  </servers>
</settings>
于 2013-03-21T19:05:23.127 回答
0

这看起来像一个 Maven 问题:

Maven 无法 org.apache.maven.wagon:wagon-http:jar:1.0-beta-2http://repo1.maven.org/maven2下载所需的依赖项

由于可以在Maven 中心找到所需的工件,这可能是网络问题的结果

于 2012-06-06T07:36:56.257 回答
0

我找到了解决此问题的方法。由于某些东西试图使用已弃用wagon-http的 maven 存储库 url 检索依赖项,因此我们可以在本地存储库中手动预安装此依赖项: http

mvn org.apache.maven.plugins:maven-dependency-plugin:2.1:get -Dartifact=org.apache.maven.wagon:wagon-http:1.0-beta-2 -Dpackaging=jar -DrepoUrl=https://repo1.maven.org/maven2

之后该publish-plugin命令应该起作用。

该问题的可能解决方法是将grails-release插件升级到v3.1.3(对我不起作用):link

于 2021-02-02T12:05:27.447 回答