LoginSignup
7
3

More than 3 years have passed since last update.

EclipseでSpring Boot使用時にpom.xmlのline 1にUnknown error

Posted at

現象

イマイチ説明が難しいのだが、Eclipseでspring-boot使用時に以下のようなエラーが出る。

booterror.jpg

だいたいこんな感じのpom.xml。

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>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.5.RELEASE</version>
        <relativePath /> <!-- lookup parent from repository -->
    </parent>
    <groupId>kagamihoge</groupId>
    <artifactId>springintegratesample</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

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

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>11</java.version>
    </properties>

</project>

対策

当座動けばいいというだけなら、2.1.52.1.4にする。

またはプロパティに以下を追加する。

<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>

参考URL

7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3