Skip to content

Commit

Permalink
Merge pull request #168 from hanieljacob/updateDependencies
Browse files Browse the repository at this point in the history
Updated dependencies
  • Loading branch information
hanieljacob authored Feb 18, 2024
2 parents a09425e + 0411984 commit 347439a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
11 changes: 6 additions & 5 deletions example/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'java'
id 'com.github.ben-manes.versions' version '0.51.0'
}

group = 'io.github.samyssmile'
Expand All @@ -18,12 +19,12 @@ repositories {
dependencies {
implementation project(path: ':lib')

implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.20.0'
implementation 'org.apache.logging.log4j:log4j-api:3.0.0-beta1'
implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta1'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:3.0.0-beta1'

testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation platform('org.junit:junit-bom:5.10.2')
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
17 changes: 9 additions & 8 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id 'maven-publish'
id 'signing'
id "me.champeau.jmh" version "0.7.2"
id 'com.github.ben-manes.versions' version '0.51.0'
}

group = 'io.github.samyssmile'
Expand Down Expand Up @@ -36,16 +37,16 @@ dependencies {
implementation 'org.openjdk.jmh:jmh-generator-annprocess:1.37'

// Other dependencies
implementation 'com.opencsv:opencsv:5.8'
implementation 'org.apache.logging.log4j:log4j-api:2.20.0'
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.20.0'
implementation 'com.opencsv:opencsv:5.9'
implementation 'org.apache.logging.log4j:log4j-api:3.0.0-beta1'
implementation 'org.apache.logging.log4j:log4j-core:3.0.0-beta1'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:3.0.0-beta1'

// Test dependencies
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.0'
testImplementation 'org.mockito:mockito-core:5.7.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testImplementation 'org.mockito:mockito-core:5.10.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
}

tasks.withType(Test) {
Expand Down

0 comments on commit 347439a

Please sign in to comment.