IntelliJ IDEA

1. For IntelliJ EDEA

  ---- For Mavel Failsafe  - install Maven Test Support Plugin https://plugins.jetbrains.com/plugin/7446-maven-test-support-plugin

2. To run Java 8 in the Maven project, add in the pom.xml file:

<build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.6.1</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
  </build>


Powered by Drupal - Modified by Danger4k