Skip to content

Commit

Permalink
chore(backend): Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Oct 8, 2024
1 parent e0c1f43 commit 518f792
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ repositories {
}

ext {
// IMPORTANT: When changing these versions, also update the constants in ProjectZipControllerTest.java

// https://mvnrepository.com/artifact/org.fulib/fulib
fulibDependency = [ group: 'org.fulib', name: 'fulib', version: '1.6.2' ]

Expand All @@ -49,15 +51,15 @@ ext {
junitDependency = [ group: 'junit', name: 'junit', version: '4.13.2' ]

// https://mvnrepository.com/artifact/org.slf4j/slf4j-simple
slf4jDependency = [ group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.13' ]
slf4jDependency = [ group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.16' ]
}

dependencies {
// --------------- Dagger (Dependency Injection) ---------------

// https://mvnrepository.com/artifact/com.google.dagger/dagger
implementation 'com.google.dagger:dagger:2.51.1'
annotationProcessor 'com.google.dagger:dagger-compiler:2.51.1'
implementation 'com.google.dagger:dagger:2.52'
annotationProcessor 'com.google.dagger:dagger-compiler:2.52'

// --------------- Fulib Libraries ---------------

Expand Down Expand Up @@ -91,7 +93,7 @@ dependencies {
testImplementation slf4jDependency

// https://mvnrepository.com/artifact/org.mockito/mockito-core
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.12.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.14.1'
}

// --------------- Version Injection ---------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class ProjectZipControllerTest
\ttestImplementation group: 'junit', name: 'junit', version: '4.13.2'
\t// https://mvnrepository.com/artifact/org.slf4j/slf4j-simple
\ttestImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.13'
\ttestImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.16'
}
generateScenarioSource {
Expand Down

0 comments on commit 518f792

Please sign in to comment.