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>