0

Springチュートリアルをインターネットからダウンロードして、ローカルワークスペースで実行しようとしています。それを行うために、私は最初にプロジェクトに必要なすべての依存jarを取得しようとしました。Mavenビルドを試しましたが、依存するjarがローカルリポジトリから欠落しており、それらのjarもリモートリポジトリ(プロジェクトで使用するもの)から欠落しているため失敗しました。

最初、私のsettings.xmlには、さまざまなプロジェクトによって組織全体で使用されるリモートリポジトリのURLへの参照しかありません。最新のjarファイルで最新のものになるとは期待できません。Log4j、コモンズロギング、スプリングjarなどのさまざまなユーティリティプロジェクトのリモートリポジトリ名を取得できますか?次に、これらのリポジトリURLをsetting.xmlに配置して、問題を解決できます。

編集:必要な最新のjarファイルがすべて含まれていると思った「http://repo1.maven.org/maven2/」も試してみましたが、これでも機能しません。

例..

ない:

1)log4j:log4j:jar:1.2.13

プロジェクトのWebサイトからファイルを手動でダウンロードしてみてください。

次に、次のコマンドを使用してインストールします。mvn install:install-file -DgroupId = log4j -DartifactId = log4j \ -Dversion = 12.13 -Dpackaging = jar -Dfile = / path / to / file

依存関係へのパス:1)com.mkyong.core:Spring3Example:jar:1.0-SNAPSHOT 2)org.codehaus.castor:castor:jar:1.1.2.1 3)log4j:log4j:jar:1.2.13

2)xerces:xerces:jar:1.4.0

プロジェクトのWebサイトからファイルを手動でダウンロードしてみてください。

次に、次のコマンドを使用してインストールします。mvn install:install-file -DgroupId = xerces -DartifactId = xerces \ -Dversion = 1.4.0 -Dpackaging = jar -Dfile = / path / to / file

依存関係へのパス:1)com.mkyong.core:Spring3Example:jar:1.0-SNAPSHOT 2)org.codehaus.castor:castor:jar:1.1.2.1 3)xerces:xerces:jar:1.4.0

3)commons-lang:commons-lang:jar:2.5

プロジェクトのWebサイトからファイルを手動でダウンロードしてみてください。

次に、次のコマンドを使用してインストールします。mvn install:install-file -DgroupId = commons-lang -DartifactId = commons-lang \ -Dversion = 2.5 -Dpackaging = jar -Dfile = / path / to / file

私のpom.xml:

    <project xmlns="http://maven.apache.org/POM/4.0.0"  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0  http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mkyong.core</groupId>
<artifactId>Spring3Example</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>Spring3Example</name>
<url>http://maven.apache.org</url>

<properties>
    <spring.version>3.0.5.RELEASE</spring.version>
</properties>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.8.2</version>
        <scope>test</scope>
    </dependency>

    <!-- Spring 3 dependencies -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
    </dependency>


    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-oxm</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <!-- Uses Castor for XML -->
    <dependency>
        <groupId>org.codehaus.castor</groupId>
        <artifactId>castor</artifactId>
        <version>1.1.2.1</version>
    </dependency>

    <!-- Castor need this -->
    <dependency>
        <groupId>xerces</groupId>
        <artifactId>xercesImpl</artifactId>
        <version>2.8.1</version>
    </dependency>

</dependencies>

私の設定.xml

<settings>
    <localRepository>
        C:\Repository
    </localRepository>

    <interactiveMode>true</interactiveMode>
    <offline>false</offline>

    <profiles>
            <profile>
                <id>R2</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                </activation>
                <repositories>


                    <repository>
                        <id>Log4j</id>
                        <url>http://central.maven.org/maven2</url>
                        <layout>default</layout>
                        <releases>
                            <enabled>true</enabled>
                            <updatePolicy>never</updatePolicy>
                            <checksumPolicy>warn</checksumPolicy>
                        </releases>
                        <snapshots>
                            <enabled>false</enabled>
                            <updatePolicy>never</updatePolicy>
                            <checksumPolicy>warn</checksumPolicy>
                        </snapshots>
                    </repository>                   

                </repositories>
                <pluginRepositories>
                    <pluginRepository>
                        <id>Artifact_Repository_Plugin</id>
                        <url>http://central.maven.org/maven2</url>
                        <layout>default</layout>
                        <releases>
                            <enabled>true</enabled>
                            <updatePolicy>never</updatePolicy>
                            <checksumPolicy>warn</checksumPolicy>
                        </releases>
                        <snapshots>
                            <enabled>false</enabled>
                            <updatePolicy>never</updatePolicy>
                            <checksumPolicy>warn</checksumPolicy>
                        </snapshots>
                    </pluginRepository>                                                         
                </pluginRepositories>
            </profile>
        </profiles>

        <pluginGroups>
            <pluginGroup>com.hsbc.alm.maven.plugins</pluginGroup>
            <pluginGroup>com.hsbc.alm.maven.scm</pluginGroup>
            <pluginGroup>com.hsbc.alm.maven.jr2</pluginGroup>
    </pluginGroups>

</settings>
4

3 に答える 3

1

generate a new archetypeはい、あなたは正しい道を進んでいます。あなたがする必要があるのはこれだけです。または、ダウンロードしたすべての追加されたjarファイルを使用するのが良い解決策です。そして、同様のプロジェクトを作成するたびに同じアーティファクトを使用します。

m2Eclipse プラグインが不足している場合でも、次のコマンドを使用できます。

これは、次のコマンドに従うと実現できます。

プロジェクトに移動し、次のコマンドを入力してプロジェクトをアーキタイプにします

mvn archetype:create-from-project

アーキタイプをローカル リポジトリにインストールする

mvn install

作成したアーキタイプで作成された新しいプロジェクトを見つけたいディレクトリに移動します

mvn archetype:generate -DarchetypeCatalog=local

リストにフィルタリングする数値が入力されている場合は、それに応じて選択すれば完了です。

于 2012-08-28T10:13:25.777 に答える
0

これは正常にビルドされています (pom.xml):

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.test.new.project</groupId>
  <artifactId>dadada</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>dadada</name>
  <url>http://maven.apache.org</url>

  <properties>
    <spring.version>3.0.5.RELEASE</spring.version>
</properties>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.8.2</version>
        <scope>test</scope>
    </dependency>

    <!-- Spring 3 dependencies -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
    </dependency>


    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-oxm</artifactId>
        <version>${spring.version}</version>
    </dependency>

    <!-- Uses Castor for XML -->
    <dependency>
        <groupId>org.codehaus.castor</groupId>
        <artifactId>castor</artifactId>
        <version>1.1.2.1</version>
    </dependency>

    <!-- Castor need this -->
    <dependency>
        <groupId>xerces</groupId>
        <artifactId>xercesImpl</artifactId>
        <version>2.8.1</version>
    </dependency>

</dependencies>
</project>

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


  <proxies>

  </proxies>

  <servers>

  </servers>

  <mirrors>

  </mirrors>

  <profiles>

  </profiles>

</settings>

なぜ settings.xml を変更する必要があるのか​​ わかりません特定の理由がありますか?

環境情報:

Apache Maven 2.2.1 (r801777; 2009-08-06 21:16:01+0200) Java バージョン: 1.6.0_29

于 2012-08-28T13:42:50.993 に答える
0

私のsettings.xmlでプロキシ設定を定義することで、最終的にjarダウンロードの問題を解決することができました。私の会社はプロキシを使用して外界と通信します。そうは言っても、settings.xml bcos maven で特定のリモート リポジトリを定義する必要がないことも学びました。デフォルトでは、ほとんどすべてのオープンソース jar を含む独自のリポジトリを検索します。

    <proxies>
   <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>xyz.hk.hsbc</host>
      <port>8080</port>       
    </proxy>
</proxies>
于 2012-08-29T04:33:18.407 に答える