0

Maven-tomcat プラグインを使用しています。ただし、戦争を開始するには、特定の瓶が必要です。これらの jar を nexus サーバーにチェックインし、依存関係として maven tomcat プラグインに追加しましたが、mvn tomcat6:run を実行すると、ビルドが失敗します。Maven tomcat プラグインは、私の nexus サーバーではなく、中央リポジトリで依存する jar を見つけようとしています。どのリポジトリを調べる必要があるかを指定する方法はありますか? または、必要な追加の jar を含むフォルダーを maven - tomcat プラグインに指定する方法はありますか? classesDir や additionalClasspathDirs などのすべてのオプションを試しましたが、役に立ちませんでした。どんな助けでも大歓迎です。

4

2 に答える 2

0

私は通常、会社の nexus サーバーをグローバル settings.xml のリポジトリとして設定します。

<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">

 ...

 <profiles>
    <profile>
      <id>repositories</id>
      <repositories>
        <repository>
          <id>my-nexus</id>
          <name>My Nexus</name>
      <url>http://my.company.com/nexus/content/groups/public</url>
          <layout>default</layout>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </snapshots>
        </repository>
      </repositories>
    </profile>
  </profiles>

  ...

  <activeProfiles>
    <activeProfile>repositories</activeProfile>
  </activeProfiles>
</settings>

その後、それは私のすべてのプロジェクトで見つかります。グローバル設定を制御しない場合は、ユーザー設定でも問題ありません。

- - - - - - - - 編集 - - - - - - - - -

これが tomcatプラグインの依存関係について尋ねていることに気付きました...プラグインは、<pluginRepositories>要素で指定された別のリポジトリ セットから依存関係を取得します。したがって、次のようなものが必要になります。

      <pluginRepositories>
        <pluginRepository>
          <id>my-nexus</id>
          <name>My Nexus</name>
          <url>http://my.company.com/nexus/content/groups/public</url>
          <layout>default</layout>
          <releases>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>never</updatePolicy>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>

これに関する適切なドキュメントを見つけようとしましたが、Mavenドキュメントではちょっと見過ごされていました。同様の質問がここにあります:

リポジトリとプラグインリポジトリの違い

于 2013-06-04T15:18:56.533 に答える
0

プラグインの依存関係を追加すると(AFAIC)。

この新しいリポジトリを pluginRepositories/pluginRepository セクションに追加する必要があります。

HTH

于 2013-06-06T01:14:17.833 に答える