Skip to content

Commit

Permalink
📦 dependency: upgrade dependencies #2
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed May 17, 2024
1 parent 1078bac commit 43b2b6a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,14 @@ tasks.jar {
dependencies {
// Use the awesome Spock testing and specification framework
testImplementation libs.spock.core
// Incorporate JUnit Jupiter API version 4.13.2 for unit testing,
// enabling developers to write and execute tests using the JUnit testing framework.
testImplementation 'junit:junit:4.13.2'
// Use JUnit Platform launcher for test runtime
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
// Use SLF4J (Simple Logging Facade for Java) API version 1.7.30 for flexible logging abstraction,
// allowing the application to bind with various logging frameworks at runtime.
testImplementation 'org.slf4j:slf4j-api:1.7.30'
// The "logback-classic" library, version 1.4.12, is a robust logging framework for Java applications,
// offering flexible and customizable logging functionalities to efficiently manage and analyze application logs.
implementation 'ch.qos.logback:logback-classic:1.4.12'
Expand All @@ -74,4 +80,9 @@ dependencies {
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda', version: '2.17.0'
// The "unirest-java" library, version 3.13.10, provides streamlined HTTP communication capabilities for Java applications, simplifying API interactions and network requests.
implementation group: 'com.konghq', name: 'unirest-java', version: '3.13.10'
// The "json-path" library, version 2.9.0, facilitates easy manipulation and querying of JSON data structures in Java applications,
// offering powerful tools for navigating and extracting data from JSON documents.
implementation group: 'com.jayway.jsonpath', name: 'json-path', version: '2.9.0'
// The "validation-api" library, version 2.0.1.Final, provides tools for validating Java objects according to defined constraints.
implementation group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
}

0 comments on commit 43b2b6a

Please sign in to comment.