Skip to content

Commit 6e76728

Browse files
committed
upgraded plugin
1 parent 24b2fa9 commit 6e76728

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lib/build.gradle

+4-3
Original file line numberDiff line numberDiff 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

1919
sourceSets {
@@ -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

124124
dependencies {
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'

0 commit comments

Comments
 (0)