skip to Main Content

Redis – Qclass dose not generated(non-existent Qclass) witth Springboot3 + JDK17 + Gradle

spirngboot 3.3.1 + JDK17; Problem occurred during migration from Springboot 2.7 to 3.3 my build.gradle.kts enter image description hereplugins { id("java") id("org.springframework.boot") version "3.3.1" id("io.spring.dependency-management") version "1.1.5" } group = "back.ecommerce" version = "0.0.1-SNAPSHOT" java { sourceCompatibility = JavaVersion.VERSION_17 }…

VIEW QUESTION

Android Studio – Unable to enable ksp for room database when using kotlin DSL build script

Problem: I want to use ksp with room. On adding ksp(libs.androidx.room.compiler) in the module level build.gradle.kts file, I get the following error: Unable to load class 'org.jetbrains.kotlin.gradle.plugin.mpp.pm20.KotlinCompilationData' org.jetbrains.kotlin.gradle.plugin.mpp.pm20.KotlinCompilationData Gradle's dependency cache may be corrupt (this sometimes occurs after a network…

VIEW QUESTION
Back To Top
Search