You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Otherwise will have: Could not resolve io.exoquery:pprint-kotlin:2.0.1.
19
19
// Incompatible because this component declares a component, compatible with Java 11 and the consumer needed a component, compatible with Java 8
20
20
java {
21
-
sourceCompatibility =JavaVersion.VERSION_11
22
-
targetCompatibility =JavaVersion.VERSION_11
21
+
sourceCompatibility =JavaVersion.VERSION_17
22
+
targetCompatibility =JavaVersion.VERSION_17
23
23
}
24
24
// If I remove this I get:
25
25
// 'compileJava' task (current target is 11) and 'kaptGenerateStubsKotlin' task (current target is 1.8) jvm target compatibility should be set to the same Java version.
0 commit comments