April 5th, 2023
Gradle compilation

Compile gradle project with different version of JDK

				
					// jdk path
/usr/lib/jvm/java-11-openjdk

// Build gradle 
gradle build -Dorg.gradle.java.home=/usr/lib/jvm/java-11-openjdk

// Build gradle without Tests
gradle build -Dorg.gradle.java.home=/usr/lib/jvm/java-11-openjdk -x test -i
				
			

Leave a Reply

Your email address will not be published. Required fields are marked *