[icalendar] Fix internal calculation for retrieving events for command tags (#11178)

* [icalendar] Fixes #11084: Different method for retrieving events

Replaced retrieval of events for CommandTags by another, already implemented method, fixing wrong behaviour in case of moved or removed events. Also updated dependencies to get this binding resolvable again.

Signed-Off-By: Michael Wodniok <michi@noorganization.org>
This commit is contained in:
Michael Wodniok
2021-09-11 16:18:08 +02:00
committed by GitHub
parent 7efc3e9e81
commit 962853811a
4 changed files with 112 additions and 58 deletions

View File

@@ -17,12 +17,12 @@
<dependency>
<groupId>net.sf.biweekly</groupId>
<artifactId>biweekly</artifactId>
<version>0.6.4</version>
<version>0.6.6</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>*</artifactId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
@@ -39,12 +39,6 @@
<version>${jackson.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>