Answers for "what is need of maven compiler plugin"

0

maven compiler plugin for 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>
Posted by: Guest on September-29-2020

Code answers related to "what is need of maven compiler plugin"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language