Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forced dependency versions and excluded dependencies #165

Merged
merged 8 commits into from
Aug 17, 2024
12 changes: 11 additions & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,17 @@ dependencies {
coreLibraryDesugaring(libs.android.desugaring)

implementation(libs.androidx.core)
api(libs.ical4j)
api(libs.ical4j) {
// Get rid of unnecessary transitive dependencies
exclude(group = "commons-validator", module = "commons-validator")
}
// Force latest version of commons libraries
implementation("org.apache.commons:commons-lang3") {
version { require("3.15.0") }
}
implementation("commons-codec:commons-codec") {
version { require("1.17.1") }
}
implementation(libs.slf4j) // ical4j logging over java.util.Logger

androidTestImplementation(libs.androidx.test.core)
Expand Down
Loading