1

これは細かすぎるかもしれませんが、(新しいバージョン) をチェックするために特定のリポジトリのみを使用するようにMaven Versions Pluginを注文したいと思います。その理由は、プラグインが (ローカルの Nexus からの) 内部の会社の依存関係のみをチェックするようにしたいためであり、外部のリポジトリをチェックする必要がある理由がないからです。(時間がかかり、ある意味ではセキュリティの問題でもあります)。親(「構成」)POMに次の設定があります:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>versions-maven-plugin</artifactId>
    <version>2.0</version>
    <configuration>
        <includes>
            <include>com.mycompany.*:*</include>
        </includes>
        <serverId>automation-nexus</serverId>
    </configuration>
</plugin>

上記の構成は、「外部」の依存関係を更新しないという点でうまく機能しますが、「com.mycompany」アーティファクトは他のすべてのリポジトリから引き続きクエリされます。ご覧のとおり、私は を使用しようとしまし<serverId>たが、それは単なる推測であり、「フィルタリング」を行っていないようです (これは特定の資格情報を使用する方法にすぎないと思います)。

これが実現可能かどうかのアイデアはありますか?

4

1 に答える 1

0

次のようなバージョンのプラグイン構成ではなく、代わりに settings.xml を変更する必要があります。

<settings>
  <mirrors>
    <mirror>
      <!--This sends everything else to /public -->
      <id>nexus</id>
      <mirrorOf>*</mirrorOf>
      <url>http://localhost:8081/nexus/content/groups/public</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>

上記の設定を使用すると、上記のグループへのアクセスが制限され、さらに、外部リポジトリではなくリポジトリ グループ内で検索できます。

于 2013-02-01T11:24:03.690 に答える