Eclipse showing “Maven Configuration Problem: Unknown”

后端 未结 9 1864
既然无缘
既然无缘 2020-12-08 06:11

I just imported a spingboot project that I created in https://start.spring.io/ in eclipse. I tried to import two times, but the problem persists. Already tried to do a mvn u

相关标签:
9条回答
  • 2020-12-08 06:38

    if you are using spring boot downgrade the version to 2.1.4.RELEASE instead of 2.1.5.RELEASE it will solve the problem

    0 讨论(0)
  • 2020-12-08 06:39

    For spring boot project I have added this:

    <properties>
                <java.version>1.8</java.version>
                <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
            </properties>
    
    0 讨论(0)
  • 2020-12-08 06:44

    Adding packaging tag solved my problem. Didn't need to lower maven-jar plugin version.

    <modelVersion>4.0.0</modelVersion>
    <packaging>war</packaging>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.2.RELEASE</version>
        <relativePath/>
    </parent>
    
    0 讨论(0)
  • 2020-12-08 06:45

    This seems like a bug in eclipse: https://bugs.eclipse.org/bugs/show_bug.cgi?id=547340

    You can fix this by temporary downgrading the maven jar plugin version to 3.1.1 from 3.1.2. Add this to the properties section:

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

    So your pom will look like this:

    <?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>com.in28minutes.springboot.rest.example</groupId>
    <artifactId>spring-boot-2-jpa-with-hibernate-and-h2</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>spring-boot-2-jpa-with-hibernate-and-h2</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>
    
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    </project>
    

    Update: A fix has been released. Click Help > Check for updates in Eclipse/STS and install the newest m2e connector.

    0 讨论(0)
  • 2020-12-08 06:48
    <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
    

    Add this dependency in pom.xml under properties tag

    0 讨论(0)
  • 2020-12-08 06:51

    Step 1:

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

    <properties>
        <java.version>X</java.version>
        <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
    </properties>
    

    Step 2 Update Project

    • Right Click on your Project
    • Go to Maven
    • Click on Update Project
    • Clean and Re-Run your Application


    0 讨论(0)
提交回复
热议问题