Commit 6e76728 1 parent 24b2fa9 commit 6e76728 Copy full SHA for 6e76728
File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
13
13
id ' java'
14
14
id ' jacoco'
15
15
id ' checkstyle'
16
- id ' me.champeau.gradle.japicmp' version ' 0.2.9 '
16
+ id ' me.champeau.gradle.japicmp' version ' 0.4.1 '
17
17
}
18
18
19
19
sourceSets {
@@ -70,8 +70,8 @@ project.afterEvaluate {
70
70
project. configure(project) {
71
71
def baselineVersion = project. ext. baselineCompareVersion
72
72
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) )
75
75
onlyModified = true
76
76
failOnModification = true
77
77
ignoreMissingClasses = true
@@ -122,6 +122,7 @@ javadoc {
122
122
}
123
123
124
124
dependencies {
125
+ implementation ' com.fasterxml.jackson.core:jackson-core:2.15.4'
125
126
implementation ' com.fasterxml.jackson.core:jackson-databind:2.15.4'
126
127
127
128
testImplementation ' org.bouncycastle:bcprov-jdk15on:1.70'
You can’t perform that action at this time.
0 commit comments