3

プロジェクトの私のpomファイルには、次の配布管理タグがあります

<distributionManagement>
    <repository>
        <id>confiz-repo</id>
        <url>http://10.10.10.230:8081/nexus/content/repositories/snapshots/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
        </snapshots>
    </repository>
</distributionManagement>

私は mvn deploy を使用しています。これで成功しました。これで、アーティファクトが正常にデプロイされたことがわかります。現在、私のsettings.xmlファイルは次のとおりです

<?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">
  <pluginGroups>
  </pluginGroups>

  <proxies>
  </proxies>

  <servers>
    <server>
      <id>confiz-repo</id>
      <username>admin</username>
      <password>admin123</password>
    </server>
  </servers>

  <mirrors>
    <mirror>
      <!-- The id of this mirror and the server instance above needs to be the same!-->
      <id>confiz-repo</id>
      <mirrorOf>*</mirrorOf>
      <url> http://10.10.10.230:8081/nexus/content/groups/public/</url>
    </mirror>
    <mirror>
      <!-- The id of this mirror and the server instance above needs to be the same!-->
      <id>confiz-repo</id>
      <mirrorOf>*</mirrorOf>
      <url> http://10.10.10.230:8081/nexus/content/repositories/snapshots/</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>confiz-repo</id>
          <url>http://central</url>
          <releases>
        <enabled>true</enabled>
      </releases>
          <snapshots>
        <enabled>true</enabled>
        <updatePolicy>always</updatePolicy>
      </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>confiz-repo</id>
          <url>http://central</url>
          <releases>
        <enabled>true</enabled>
      </releases>
          <snapshots>
        <enabled>true</enabled>
      </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>


  <activeProfiles>
    <activeProfile>nexus</activeProfile>
  </activeProfiles>

</settings>

最初のプロジェクトの依存関係を 2 番目のプロジェクトに含めて mvn clean install maven を実行すると、問題が発生します

[ERROR] Failed to execute goal on project merchant: Could not resolve dependencies for project com.onestopspot:merchant:apk:1.0.1-SNAPSHOT: Could not find artifact com.confiz.abc:my-artifact:jar:1.0-SNAPSHOT in confiz-repo (http://10.10.10.230:8081/nexus/content/groups/public/) -> [Help 1]

私は何を間違っていますか?

編集- アーティファクトが nexus にデプロイされていることがわかります。したがって、mvn deploy が正しく機能すると言っても過言ではありません。http://10.10.10.230:8081/nexus/content/groups/public/しかし、 nexus が読み取ろうとしているパスに私のアーティファクトが含まれていません。

4

1 に答える 1

0

あなたの2番目のプロジェクトは、そこに存在しないネクサスから最初のプロジェクトのアーティファクトを取得しようとしています

  1. nexus にスナップショットをデプロイすることをお勧めします
  2. やりたくない場合 1.mvn clean install -oオフラインモードで2番目のプロジェクトを実行します
于 2013-03-29T18:42:49.143 に答える