Disabled JDK 19 from CircleCI
This commit is contained in:
parent
e94b1aa97d
commit
1825b13a23
2 changed files with 8 additions and 1 deletions
|
@ -52,4 +52,3 @@ workflows:
|
|||
gradle:
|
||||
jobs:
|
||||
- build_gradle_jdk17
|
||||
- build_gradle_jdk19
|
||||
|
|
|
@ -158,6 +158,14 @@ detekt {
|
|||
baseline = file("${projectDir}/config/detekt/baseline.xml")
|
||||
}
|
||||
|
||||
tasks.withType(Detekt).configureEach {
|
||||
jvmTarget = java.targetCompatibility.toString()
|
||||
}
|
||||
|
||||
tasks.withType(DetektCreateBaselineTask).configureEach {
|
||||
jvmTarget = java.targetCompatibility.toString()
|
||||
}
|
||||
|
||||
jar {
|
||||
manifest.attributes('Main-Class': mainClassName,
|
||||
'Class-Path': '. ./lib/' + configurations.runtimeClasspath.collect { it.getName() }.join(' ./lib/'))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue