-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8f27e1
commit 02efa40
Showing
7 changed files
with
74 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
ical4jVersion = 4.0.0-rc3 | ||
ical4jVCardVersion = 2.0.0-beta2 | ||
ical4jVersion = 4.0.0-rc4 | ||
ical4jVCardVersion = 2.0.0-beta3 | ||
|
||
jackrabbitWebdavVersion = 2.21.21 | ||
jackrabbitCoreVersion = 2.21.21 | ||
httpclientVersion = 4.5.14 | ||
jackrabbitWebdavVersion = 2.21.23 | ||
jackrabbitCoreVersion = 2.21.23 | ||
groovyVersion=3.0.17 | ||
slf4jVersion = 2.0.7 | ||
log4jVersion = 2.20.0 | ||
openTracingVersion = 0.33.0 | ||
joolVersion = 0.9.14 | ||
jetbrainsVersion = 20.1.0 | ||
joolVersion = 0.9.15 | ||
jetbrainsVersion = 24.1.0 | ||
|
||
spockVersion = 2.4-M1-groovy-3.0 | ||
junitVintageVersion = 5.8.2 | ||
testcontainersVersion = 1.16.2 | ||
testcontainersVersion = 1.19.5 | ||
bndVersion = 6.1.0 | ||
|
||
revApiOldVersion = 1.0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dependencies { | ||
api "org.mnode.ical4j:ical4j:$ical4jVersion", | ||
"org.mnode.ical4j:ical4j-vcard:$ical4jVCardVersion" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module ical4j.connector.api { | ||
requires java.base; | ||
|
||
requires transitive ical4j.core; | ||
requires transitive ical4j.vcard; | ||
|
||
requires org.slf4j; | ||
requires org.apache.commons.lang3; | ||
|
||
exports org.ical4j.connector; | ||
exports org.ical4j.connector.local; | ||
exports org.ical4j.connector.event; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
dependencies { | ||
api project(":ical4j-connector-api"), | ||
"org.apache.jackrabbit:jackrabbit-webdav:$jackrabbitWebdavVersion", | ||
"org.jetbrains:annotations:$jetbrainsVersion", | ||
"org.jooq:jool-java-8:$joolVersion" | ||
api project(':ical4j-connector-api'), | ||
"org.jetbrains:annotations:$jetbrainsVersion", "org.jooq:jool-java-8:$joolVersion" | ||
|
||
implementation 'javax.servlet:servlet-api:2.5' | ||
api("org.apache.httpcomponents:httpclient:$httpclientVersion") { | ||
exclude(group: 'commons-logging', module: 'commons-logging') | ||
} | ||
|
||
api("org.apache.jackrabbit:jackrabbit-webdav:$jackrabbitWebdavVersion") { | ||
exclude(group: 'org.apache.httpcomponents', module: 'httpclient') | ||
} | ||
implementation 'javax.servlet:servlet-api:2.5', 'org.hamcrest:hamcrest:2.2' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module ical4j.connector.dav { | ||
requires java.base; | ||
requires java.xml; | ||
|
||
requires ical4j.connector.api; | ||
|
||
requires org.apache.httpcomponents.httpcore; | ||
requires org.apache.httpcomponents.httpclient; | ||
requires jackrabbit.webdav; | ||
|
||
requires org.slf4j; | ||
requires static org.jetbrains.annotations; | ||
requires static org.hamcrest; | ||
|
||
exports org.ical4j.connector.dav; | ||
exports org.ical4j.connector.dav.method; | ||
exports org.ical4j.connector.dav.property; | ||
exports org.ical4j.connector.dav.request; | ||
exports org.ical4j.connector.dav.response; | ||
} |