File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
1313 id ' java'
1414 id ' jacoco'
1515 id ' checkstyle'
16- id ' me.champeau.gradle.japicmp' version ' 0.2.9 '
16+ id ' me.champeau.gradle.japicmp' version ' 0.4.1 '
1717}
1818
1919sourceSets {
@@ -70,8 +70,8 @@ project.afterEvaluate {
7070 project. configure(project) {
7171 def baselineVersion = project. ext. baselineCompareVersion
7272 task(' apiDiff' , type : JapicmpTask , dependsOn : ' jar' ) {
73- oldClasspath = files(getBaselineJar(project, baselineVersion))
74- newClasspath = files(jar. archiveFile)
73+ oldClasspath. from( files(getBaselineJar(project, baselineVersion) ))
74+ newClasspath. from( files(jar. archiveFile) )
7575 onlyModified = true
7676 failOnModification = true
7777 ignoreMissingClasses = true
@@ -122,6 +122,7 @@ javadoc {
122122}
123123
124124dependencies {
125+ implementation ' com.fasterxml.jackson.core:jackson-core:2.15.4'
125126 implementation ' com.fasterxml.jackson.core:jackson-databind:2.15.4'
126127
127128 testImplementation ' org.bouncycastle:bcprov-jdk15on:1.70'
You can’t perform that action at this time.
0 commit comments