Answers for "intellij module target bytecode version keeps changing"

0

intellij set target bytecode version

<properties>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
    </properties>
Posted by: Guest on April-20-2020
0

intellij module target bytecode version keeps changing

<project>
  [...]
  <build>
    [...]
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
    </plugins>
    [...]
  </build>
  [...]
</project>
Posted by: Guest on December-07-2020

Code answers related to "intellij module target bytecode version keeps changing"

Browse Popular Code Answers by Language