web-dev-qa-db-ja.com

Mavenがローカルリポジトリを使用していない

Mavenの設定に小さな問題があります。ここにある他のすべての質問と回答では問題が解決しなかったので、新しい質問を始めます。

私の問題は、Mavenがローカルリポジトリを使用していないことです。常にリモートリポジトリからアーティファクトをフェッチしています。

アーティファクトがダウンロードされるか、プロジェクトをビルドすると、ローカルリポジトリにインストールされるため、パスは正しいです。

問題は次のとおりです。1つのSNAPSHOTプロジェクトをビルドすると、ローカルリポジトリにのみインストールされます(このようにする必要があります。毎回ネクサスに公開したくない)。前のプロジェクトをpom.xmlの依存関係として持つ別のプロジェクトをビルドすると、Mavenは、ローカルリポジトリからアーティファクトを取得するのではなく、アーティファクトが見つからなかったネクサスサーバーからアーティファクトをダウンロードしたいと考えています。

これは私のMaven構成です:

<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.Apache.org/SETTINGS/1.0.0" 
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
          xsi:schemaLocation="http://maven.Apache.org/SETTINGS/1.0.0 http://maven.Apache.org/xsd/settings-1.0.0.xsd">
  <localRepository>C:\Users\Marc\.m2\repository</localRepository>
  <interactiveMode>false</interactiveMode>
  <usePluginRegistry>false</usePluginRegistry>
  <pluginGroups>
  </pluginGroups>
  <servers>
    <server>
      <id>releases</id>
      <username>MY_USERNAME</username>
      <password>MY_PASSWORD</password>
      <filePermissions>664</filePermissions>
      <directoryPermissions>775</directoryPermissions>
    </server>
    <server>
      <id>snapshots</id>
      <username>MY_USERNAME</username>
      <password>MY_PASSWORD</password>
      <filePermissions>664</filePermissions>
      <directoryPermissions>775</directoryPermissions>
    </server>
    <server>
      <id>nexus</id>
      <username>MY_USERNAME</username>
      <password>MY_PASSWORD</password>
      <filePermissions>664</filePermissions>
      <directoryPermissions>775</directoryPermissions>
    </server>
  </servers>
  <profiles>
    <profile>
      <id>nexussrv</id>
      <repositories>
        <repository>
          <id>snapshots</id>
          <url>http://nexus/content/repositories/snapshots</url>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </snapshots>
          <releases>
            <enabled>false</enabled>
          </releases>
        </repository>
        <repository>
          <id>releases</id>
          <url>http://nexus/content/repositories/releases</url>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
          </releases>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
        </repository>
        <repository>
          <id>nexus</id>
          <url>http://nexus/content/groups/public</url>
        </repository>
      </repositories>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>nexussrv</activeProfile>
  </activeProfiles>
</settings>

ネクサスからのダウンロードとアーティファクト(SNAPSHOTおよびRELEASE)のネクサスへの公開はこの構成で機能しますが、ローカルリポジトリからのアーティファクトは使用しません。

ご協力いただきありがとうございます!

10
Marc Vollmer

SNAPSHOTが常に<updatePolicy>always</updatePolicy>)スナップショットネクサスからダウンロードします。したがって、ローカルキャッシュ(~/.m2/repository)スナップショットの新しいバージョンがあり、Mavenは構成済みサーバーからスナップショットをダウンロードしようとします(http://nexus/content/repositories/snapshots)。

スナップショットエントリのupdatePolicyを変更することを検討してください。例えば。 SNAPSHOTを毎日(午前中に)snapshot-nexusにデプロイするCIサーバーがある場合は、updatePolicyをdailyに変更します。

15
MrD