@@ -12,8 +12,8 @@ plugins {
1212 id ' signing'
1313 id ' maven-publish'
1414 id ' org.ajoberstar.grgit' version ' 4.1.1'
15- id ' org.barfuin.gradle.jacocolog' version ' 3.1 .0'
16- id ' org.barfuin.gradle.taskinfo' version ' 2.2 .1'
15+ id ' org.barfuin.gradle.jacocolog' version ' 4.0 .0'
16+ id ' org.barfuin.gradle.taskinfo' version ' 3.0 .1'
1717}
1818
1919repositories {
@@ -67,14 +67,14 @@ project.gradle.taskGraph.whenReady { taskGraph ->
6767 * - - - - DEPENDENCIES - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
6868 */
6969dependencies {
70- compileOnly group : ' com.google.code.findbugs' , name : ' jsr305' , version : ' 3.0.2'
71- api group : ' org.cyclonedx' , name : ' cyclonedx-core-java' , version : ' 11.0.1'
72- implementation group : ' org.slf4j' , name : ' slf4j-api' , version : ' 2.0.17'
73-
74- testCompileOnly group : ' com.google.code.findbugs' , name : ' jsr305' , version : ' 3.0.2'
75- testImplementation group : ' junit' , name : ' junit' , version : ' 4.13.2'
76- testImplementation group : ' commons-io' , name : ' commons-io'
77- testRuntimeOnly group : ' org.apache.logging.log4j' , name : ' log4j-slf4j2-impl' , version : ' 2.25.3'
70+ compileOnly ' com.google.code.findbugs: jsr305: 3.0.2'
71+ api ' org.cyclonedx: cyclonedx-core-java: 11.0.1'
72+ implementation ' org.slf4j: slf4j-api: 2.0.17'
73+
74+ testCompileOnly ' com.google.code.findbugs: jsr305: 3.0.2'
75+ testImplementation ' junit: junit: 4.13.2'
76+ testImplementation ' commons-io: commons-io'
77+ testRuntimeOnly ' org.apache.logging.log4j: log4j-slf4j2-impl: 2.25.3'
7878}
7979
8080
@@ -242,7 +242,7 @@ tasks.named('javadoc').configure {
242242 // workaround for JDK 9+: https://github.com/gradle/gradle/issues/11182
243243 def currentJavaVersion = JavaVersion . current()
244244 if (currentJavaVersion >= JavaVersion . VERSION_1_9 ) {
245- options. addStringOption(" -release " , " 8" )
245+ options. addStringOption(" source " , " 8" )
246246 }
247247}
248248
@@ -263,7 +263,7 @@ project.extensions.findByName('checkstyle').sourceSets.each { SourceSet s ->
263263
264264dependencies {
265265 checkstyle " com.puppycrawl.tools:checkstyle:${ project.extensions.checkstyle.toolVersion} "
266- checkstyle group : ' com.github.sevntu-checkstyle' , name : ' sevntu-checks' , version : ' 1.37.0'
266+ checkstyle ' com.github.sevntu-checkstyle: sevntu-checks: 1.37.0'
267267}
268268
269269
0 commit comments