Skip to content

Commit

Permalink
Re-introduce dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Unthrottled committed Feb 23, 2023
1 parent f5d51ec commit 5e18db7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,21 @@ repositories {

dependencies {
implementation("org.javassist:javassist:3.29.2-GA")
implementation("commons-io:commons-io:2.11.0")
implementation("io.sentry:sentry:6.14.0")
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation("io.mockk:mockk:1.13.4")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
}

configurations {
implementation.configure {
// sentry brings in a slf4j that breaks when
// with the platform slf4j
exclude("org.slf4j")
}
}

repositories {
mavenCentral()
}
Expand Down

0 comments on commit 5e18db7

Please sign in to comment.