11

pom.xml以下の依存関係をファイルに追加しました。

<dependency>
  <groupId>org.tuckey</groupId>
  <artifactId>urlrewritefilter</artifactId>
  <version>4.0.4</version>
</dependency>

私は多くのmaven依存関係を持っていますが、上記のものを追加すると次のようになります:

Failed to read artifact descriptor for org.tuckey:urlrewritefilter:jar:4.0.4: Could not transfer artifact org.tuckey:urlrewritefilter:pom:4.0.4 from/to central (http://app1.stage.server.net/artifactory/libs-release): Not authorized, ReasonPhrase:Unauthorized. -> [Help 1]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

ファイルは次のようになりsettings.xmlます。

..
  <servers>
    <server>
      <username>user</username>
      <id>central</id>
      <password>my-password</password>
    </server>
    <server>
      <username>user</username>
      <id>snapshots</id>
      <password>my-password</password>
    </server>
  </servers>
  <profiles>
    ...
  </profiles>
  <activeProfiles>
    <activeProfile>artifactory</activeProfile>
  </activeProfiles>
..

助けはありますか?tnx。

4

5 に答える 5

5

プロキシ サーバーが maven 用に正しく構成されていないときに、この問題に直面しました。プロキシ サーバーについてネットワーク管理者に確認し、settings.xmlconf ディレクトリの下に追加する必要があります。

タグを探し<proxies>てフィールドを更新できます。

この問題に直面したとき、私もそれがほんの数個の jar で発生したと感じましたが、他の必要な jar ファイルはすべてローカル リポジトリに既に存在していたため、数個の jar のみで取得していました。

于 2013-10-04T09:29:22.727 に答える
1

settings.xml で指定したリポジトリまたはパスワードのアクセスを確認してください。

于 2015-11-09T07:58:02.543 に答える