“Maven Compiler Plugin für Java 13” Code-Antworten

Maven Compiler Plugin für Java 13

<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<version>3.8.0</version>
	<configuration>
		<release>13</release>
		<compilerArgs>
			--enable-preview
		</compilerArgs>
	</configuration>
</plugin>
Grumpy Gemsbok

wie man Maven Java -Version in PO ändert,

<project>
...
 <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
...
</project>
Grotesque Goosander

So ändern Sie die Java -Version in pom.xml

<properties>    <maven.compiler.target>1.8</maven.compiler.target>    <maven.compiler.source>1.8</maven.compiler.source></properties>
Fragile Fox

Ähnliche Antworten wie “Maven Compiler Plugin für Java 13”

Fragen ähnlich wie “Maven Compiler Plugin für Java 13”

Weitere verwandte Antworten zu “Maven Compiler Plugin für Java 13” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen