Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 41171b57 authored by Sunik Kupfer's avatar Sunik Kupfer Committed by GitHub
Browse files

Update to ical4j 3.2.4 (closes bitfireAT/ical4android#47) (#48)

* Update to ical4j 3.2.4 (closes bitfireAT/ical4android#47)

* exclude commons-logging, due to DuplicatePlatformClasses issue
parent 22dfb270
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ buildscript {
    ext.versions = [
        kotlin: '1.7.0',
        dokka: '1.5.0',
        ical4j: '3.2.0',    // tests fail with >= 3.2.1: https://github.com/ical4j/ical4j/issues/350#issuecomment-1177290922 – update as soon as this is fixed
        ical4j: '3.2.4',
        // latest Apache Commons versions that don't require Java 8 (Android 7)
        commonsIO: '2.6'
    ]
@@ -84,7 +84,7 @@ dependencies {
    coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.6'

    api("org.mnode.ical4j:ical4j:${versions.ical4j}") {
        exclude module: 'javax.mail'
        exclude group: 'commons-logging'
        exclude group: 'org.codehaus.groovy', module: 'groovy'
        exclude group: 'org.codehaus.groovy', module: 'groovy-dateutil'
    }
@@ -94,8 +94,6 @@ dependencies {
    // noinspection GradleDependency
    api("org.apache.commons:commons-lang3:3.8.1") { force = true }

    // ical4j requires JavaMail API (e.g. for EMAIL parameter)
    implementation 'com.sun.mail:android-mail:1.6.7'
    // noinspection GradleDependency
    implementation "commons-io:commons-io:${versions.commonsIO}"