以下はpom.xmlファイルです。最初の行で、次のエラーが表示されます。
ライフサイクル処理命令の解析エラー。
エラーの原因を見つけるのに助けが必要です。
<?xml version="1.0" encoding="UTF-8"?>
<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.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>First</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<Java.version>1.8</Java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
この問題は私を狂気に駆り立てていました。最終的には、次の場所にあるmavenリポジトリー全体を削除することで解決できました。
Windows: c:\Users\<username>\.m2\
その後、プロジェクト(EclipseのAlt + F5)を更新しました。問題はなくなりました!
たぶん、Mavenの異なるバージョンの衝突(私はEclipse + m2eプラグインのいくつかの異なるバージョンを使用しています)。
.m2フォルダーに破損した依存関係があります。
これは、m2e-wtp統合プラグインの古いバージョンが原因です。この問題を解決するには、Eclipse(Neon)で[ヘルプ]-> [新しいソフトウェアのインストール]に移動します。-> Enter http://download.Eclipse.org/m2e-wtp/milestones/neon/1.3 / [処理]ボックスでEnterキーを押します。すべてのチェックボックスにチェックマークを付け、プラグインをインストールしてIDEを再起動します。動作するはずです。同様に、他のバージョンについては、次のリンクを参照することができます https://www.Eclipse.org/m2e-wtp/ と、Eclipseのバージョンに応じて最新/以前のビルドを試してください。
Eclipse Webをご覧ください http://marketplace.Eclipse.org/content/maven-integration-Eclipse-wtp
M2Eclipse-wtpプロジェクトはEclipse Foundationに移行しました。 m2Eclipse-wtpプラグインは廃止され、新しいm2e-wtpが採用されました
マーケットプレイスからの自動インストールは一時停止されています。 m2Eclipse-wtp 0.15.3は、 http://download.jboss.org/jbosstools/updates/m2Eclipse-wtp/ から手動でインストールできます。
最初にEclipseのすべてのm2e-wtpプラグインをアンインストールしてから、jboss urlからインストールする必要があります