`mvn package`提供致命错误编译:无效标志:-parameters错误

时间:2019-06-17 10:13:59

标签: java maven spring-boot

我已经使用Initialzr工具生成了一个Spring Boot项目。我已经在下面允许本教程介绍添加模板和控制器的地方:

https://www.baeldung.com/spring-boot-start

现在,我只是尝试运行mvn clean package,但在命令提示符下仅看到以下错误:

...
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  1.501 s
[INFO] Finished at: 2019-06-17T11:03:12+01:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project myapp: Fatal error compiling: invalid flag: -parameters -> [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/MojoExecutionException

我尝试在此处谷歌搜索一些错误,因为通常我可以解决问题,但实际上并没有什么东西能让我理解。

下面也是我的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>com.example</groupId>
    <artifactId>myapp</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>My App</name>

    <properties>
        <java.version>1.8</java.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>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

2 个答案:

答案 0 :(得分:0)

对我来说,问题在于maven使用的Java版本不同于该项目。

在我对其进行了更改之后,以便maven和project都使用相同版本的Java,一切正常。

在我的情况下,差异是项目在Java 1.8上,而maven在使用Java 1.7。

由于我需要在Java Home中设置Java的较早版本,因此直接更改了Java的Maven版本。为此,我提到了以下主题:How to set specific java version to Maven

我希望这会有所帮助。

答案 1 :(得分:0)

就我而言,我是这样做的:

  1. 在pom.xml中添加了以下几行:
    <properties>
        <java.version>1.8</java.version>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
  1. 转到proyect的属性-> Java构建路径->库
  2. 检查“ JRE系统库[]”是否已将“ JavaSE-1.8(jre1.8.0_221)用作JRE。
  3. 选择“ JRE系统库”->单击“编辑...”
  4. 选中选项“ Alternate JRE:”,然后选择“ jdk1.8.0_221”。
  5. 保存所有内容,在项目中执行“ Maven Clean”,并在项目中安装Maven。

在Eclipse下载Maven信息库之后,构建成功。