Included "epublib-core" through MavenCentral.

This commit is contained in:
acclorite 2024-07-29 18:18:43 +03:00
parent c3b3a52894
commit 2114803c22
2 changed files with 1 additions and 7 deletions

View file

@ -137,7 +137,7 @@ dependencies {
implementation("com.tom-roush:pdfbox-android:latest.release") implementation("com.tom-roush:pdfbox-android:latest.release")
// Epub parser // Epub parser
implementation("nl.siegmann.epublib:epublib-core:latest.release") { implementation("com.positiondev.epublib:epublib-core:3.1") {
exclude("org.slf4j") exclude("org.slf4j")
exclude("xmlpull") exclude("xmlpull")
} }

View file

@ -5,9 +5,6 @@ pluginManagement {
google() google()
mavenCentral() mavenCentral()
gradlePluginPortal() gradlePluginPortal()
maven {
url = uri("https://github.com/psiegman/mvn-repo/raw/master/releases")
}
} }
} }
dependencyResolutionManagement { dependencyResolutionManagement {
@ -15,9 +12,6 @@ dependencyResolutionManagement {
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
maven {
url = uri("https://github.com/psiegman/mvn-repo/raw/master/releases")
}
} }
} }