so i use version 5.0.0 of shadowJar now and rearra...
# gradle
s
so i use version 5.0.0 of shadowJar now and rearranged the task configurations but @napperley’s code seems to work 🙂
Copy code
tasks {
    withType<KotlinCompile> {
        kotlinOptions.jvmTarget = "1.8"
    }

    shadowJar {
        archiveBaseName.set("repo_info")
        archiveClassifier.set("")
    }
}