Skip to content

Commit

Permalink
upgraded plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
tanya732 committed Jan 27, 2025
1 parent 24b2fa9 commit 6e76728
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
id 'java'
id 'jacoco'
id 'checkstyle'
id 'me.champeau.gradle.japicmp' version '0.2.9'
id 'me.champeau.gradle.japicmp' version '0.4.1'
}

sourceSets {
Expand Down Expand Up @@ -70,8 +70,8 @@ project.afterEvaluate {
project.configure(project) {
def baselineVersion = project.ext.baselineCompareVersion
task('apiDiff', type: JapicmpTask, dependsOn: 'jar') {
oldClasspath = files(getBaselineJar(project, baselineVersion))
newClasspath = files(jar.archiveFile)
oldClasspath.from(files(getBaselineJar(project, baselineVersion)))
newClasspath.from(files(jar.archiveFile))
onlyModified = true
failOnModification = true
ignoreMissingClasses = true
Expand Down Expand Up @@ -122,6 +122,7 @@ javadoc {
}

dependencies {
implementation 'com.fasterxml.jackson.core:jackson-core:2.15.4'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.4'

testImplementation 'org.bouncycastle:bcprov-jdk15on:1.70'
Expand Down

0 comments on commit 6e76728

Please # to comment.