Skip to content

Commit

Permalink
Add missing dependencies to Gradle build.
Browse files Browse the repository at this point in the history
  • Loading branch information
codecop committed Oct 16, 2023
1 parent c5bd65e commit bdbaad0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Java/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,8 @@ local.properties
# Maven
/target/

# Gradle
/build/
.gradle/

hs_err_pid*
12 changes: 8 additions & 4 deletions Java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,15 @@ repositories {
}

dependencies {
testRuntimeOnly("com.google.code.gson:gson:2.9.1")
implementation("com.google.guava:guava:31.1-jre")
testImplementation("com.approvaltests:approvaltests:18.5.0")
implementation("mysql:mysql-connector-java:8.0.13")
implementation("com.mashape.unirest:unirest-java:1.4.9")
implementation("com.fasterxml.jackson.core:jackson-core:2.9.9")
implementation("com.fasterxml.jackson.core:jackson-databind:2.9.9")
testCompileOnly 'junit:junit:4.12'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.8.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.1'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.1'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.1'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.18.0'
}

test {
Expand Down

0 comments on commit bdbaad0

Please sign in to comment.