【问题标题】:compling issues in maven在 Maven 中编译问题
【发布时间】:2019-04-27 04:33:10
【问题描述】:

当我使用命令-mvn install时,我遇到了这样的问题。问题是

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.7.0:testCompile (default-testCompile) on project Demo: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?

我在我的工作区中运行我的程序默认只有 jre1.8,但对于以前的程序它运行成功。仅此一项就面临问题!

我的 POM 文件

<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>Demo</groupId>
  <artifactId>Demo</artifactId>
  <version>0.0.1-SNAPSHOT</version>

  <properties>
  <suiteXmlFile>src/main/resources/testng.xml</suiteXmlFile>
  </properties>

  <dependencies>            

        <dependency>                
            <groupId>org.seleniumhq.selenium</groupId>                              
            <artifactId>selenium-java</artifactId>                              
            <version>2.45.0</version>                               
        </dependency>               
        <dependency>                
            <groupId>org.testng</groupId>                               
            <artifactId>testng</artifactId>                             
            <version>6.8</version>                              
            <scope>test</scope>                                     
       </dependency>                
</dependencies>

<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.7.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.22.1</version>

    <configuration>

  <suiteXmlFiles>
  <suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
  </suiteXmlFiles>

    </configuration>

</plugin>
</plugins>
</build>
</project>

请帮我解决这个问题!

【问题讨论】:

    标签: java maven selenium-webdriver pom.xml


    【解决方案1】:

    尝试设置环境变量 JAVA_HOME 指向 jdk。 https://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/

    另外,尝试将 maven 编译器插件设置为您正在使用的编译器版本。

    https://maven.apache.org/plugins/maven-compiler-plugin/usage.html

    【讨论】:

      猜你喜欢
      • 2020-07-16
      • 1970-01-01
      • 1970-01-01
      • 2015-01-12
      • 2013-11-29
      • 2018-04-03
      • 2021-10-04
      相关资源
      最近更新 更多