The targetCompatibility in gradle.properties will make the actual targetCompatibility to current JAVA_HOME, this will make it possible to generate a lib which doesn't work under a lower version jdk like 1.8
What has been done in this PR?
Remove all targetCompatibility in gradle.properties
Extract the common configuration to parent build.gradle
Bump the version and fix the compilation issue caused by proxy refactor
What problem is this PR solving?
The targetCompatibility in gradle.properties will make the actual targetCompatibility to current JAVA_HOME, this will make it possible to generate a lib which doesn't work under a lower version jdk like 1.8
What has been done in this PR?