Skip to content
This repository was archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
build: upgrade dependencies to the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
flyisland committed Nov 3, 2022
1 parent 8cbf26e commit b21c341
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ def longVersion = version + ", Build time: "+ new SimpleDateFormat("yyyy-MM-dd H
repositories {
// Use JCenter for resolving dependencies.
jcenter()
mavenCentral()
}

task nativeAgent(type:Exec) {
Expand Down Expand Up @@ -41,17 +42,17 @@ jar {

dependencies {
// Use JUnit Jupiter for testing.
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.0'

// Use JUnit Jupiter Engine for testing.
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'

// This dependency is used by the application.
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.2'
implementation 'info.picocli:picocli:4.6.1'
annotationProcessor 'info.picocli:picocli-codegen:4.6.1'
implementation 'ch.qos.logback:logback-classic:1.3.0-alpha5'
implementation 'com.jayway.jsonpath:json-path:2.5.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.4.2'
implementation 'info.picocli:picocli:4.7.0'
annotationProcessor 'info.picocli:picocli-codegen:4.7.0'
implementation 'ch.qos.logback:logback-classic:1.4.4'
implementation 'com.jayway.jsonpath:json-path:2.7.0'
implementation 'org.freemarker:freemarker:2.3.31'
}

Expand Down

0 comments on commit b21c341

Please sign in to comment.