事象
STSで新規作成したばかりのSpring Bootプロジェクトで、pom.xmlの1行目がエラーになる。
Eclipseは「pleiades-2019-03-java-win-64bit-jre_20190508」を使用。
原因
maven-jar-pluginの現時点での最新版3.1.2のバグ?
対処
npmrepositoryで確認すると3.1.2が最新。
バージョンを一つ落として3.1.1にすると解決。
<?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.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
<!-- 追加 -->
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
</properties>
暫定対処?
3.1.3が出たら直る?取りあえず暫定対処ということで。