reservationVol
という名前のプロジェクトがあり、これをreservationVolMvc
という名前のmvc Springプロジェクトに含めます。私はEclipseでreservationVol
をコンパイルしてテストしました。私はmavenコマンドも使用します:mvn compil
eおよびmvn package
。すべてのテストが正常に実行されました。
Mvn compileコマンドを使用してreservationVolMvc
をコンパイルしようとすると、次のエラーが発生します。
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building reservationVolSpring 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for hani.reservationVol:reservationVol:jar:1.0-SNAPSHOT is missing, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.688 s
[INFO] Finished at: 2016-11-23T12:25:21+01:00
[INFO] Final Memory: 6M/77M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project reservationVolSpring: Could not resolve dependencies for project formation.addstones:reservationVolSpring:war:1.0-SNAPSHOT: Could not find artifact hani.reservationVol:reservationVol:jar:1.0-SNAPSHOT -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.Apache.org/confluence/display/MAVEN/DependencyResolutionException
次のpom.xmlファイルは、それぞれreservationVol
とreservationVolMvc
の依存関係を表しています。次のコードを使用して、プロジェクトReservationVol
をreservationVolMvc
に含めました。
<dependency>
<groupId>hani.reservationVol</groupId>
<artifactId>reservationVol</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<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>hani.reservationVol</groupId>
<artifactId>reservationVol</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>reservationVol</name>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-Java</artifactId>
<version>5.1.39</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.1.0.Final</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.1.0.Final</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.2.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>4.2.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.Apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.2.5.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
<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>formation.addstones</groupId>
<artifactId>reservationVolSpring</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>reservationVolSpring</name>
<dependencies>
<dependency>
<groupId>hani.reservationVol</groupId>
<artifactId>reservationVol</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.7.5</version>
</dependency>
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.2.6.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.2.6.RELEASE</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.3.2.Final</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
mvn clean install
。
これにより、以前のビルドから作成されたものがすべて消去され、プロジェクトがビルドされ、jarがローカルのmavenリポジトリー(.m2\repository)に追加されます
私も同じ問題に直面しました...................問題が解決しました
Mavenをクリーンにして子プロジェクトをインストールしてから、
mavenクリーンおよび親プロジェクトのインストール。
参考までに、これらのビデオをご覧ください https://www.youtube.com/watch?v=2aNC1EAnpqohttps://www.youtube.com/watch?v=EMfd2FwKKHY
私は同じ問題に直面していました。依存プロジェクトのクリーンインストールで失敗する親プロジェクトがありました。
上記の解決策をすべて試しましたが、Eclipseとコマンドラインの両方でクリーンインストールを実行しました。
子プロジェクトに移動して次を実行することで解決できました
mvn clean
_mvn Eclipse:eclipse
_(これにより、不足しているjarが強制的にダウンロードされます)mvn clean install -U
_mvn clean install -DskipTests -P(if necessary a profile here) -U
これは、mavenがpom.xmlに適切にリストされたjarをダウンロードしていないときに役立ち、Update Snapshotsなどでクリーンインストールする理由を見つけることができませんでした。不足しているjarをダウンロードしませんでした。