-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from ical4j/develop
Added full Java module support
- Loading branch information
Showing
10 changed files
with
108 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
CHANGELOG_START_TAG=ical4j-extensions-2.0.0-beta2 | ||
CHANGELOG_END_TAG=HEAD | ||
|
||
GRADLE_VERSION=7.6 | ||
GRADLE_VERSION=8.4 |
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
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,10 +1,10 @@ | ||
ical4jVersion=4.0.0-rc2 | ||
ical4jVCardVersion=2.0.0-beta2 | ||
|
||
groovyVersion=3.0.10 | ||
slf4jVersion=2.0.7 | ||
log4jVersion=2.20.0 | ||
ical4jVersion=4.0.0-rc4 | ||
ical4jVCardVersion=2.0.0-beta3 | ||
groovyVersion=3.0.20 | ||
slf4jVersion=2.0.9 | ||
log4jVersion=2.22.1 | ||
bndVersion=6.2.0 | ||
jacoco_htmlReport=true | ||
revApiOldVersion=1.0.4 | ||
junitVintageVersion=5.10.2 | ||
spockVersion=2.4-M1-groovy-3.0 |
Binary file not shown.
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,5 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
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,23 @@ | ||
module ical4j.extensions { | ||
requires java.base; | ||
requires ical4j.core; | ||
requires ical4j.vcard; | ||
|
||
requires org.threeten.extra; | ||
requires static org.codehaus.groovy; | ||
|
||
exports net.fortuna.ical4j.extensions.alarm; | ||
exports net.fortuna.ical4j.extensions.caldav.parameter; | ||
exports net.fortuna.ical4j.extensions.caldav.property; | ||
exports net.fortuna.ical4j.extensions.concept; | ||
exports net.fortuna.ical4j.extensions.data; | ||
exports net.fortuna.ical4j.extensions.groupwise; | ||
exports net.fortuna.ical4j.extensions.link; | ||
exports net.fortuna.ical4j.extensions.location; | ||
exports net.fortuna.ical4j.extensions.lotus; | ||
exports net.fortuna.ical4j.extensions.outlook; | ||
exports net.fortuna.ical4j.extensions.parameter; | ||
exports net.fortuna.ical4j.extensions.participant; | ||
exports net.fortuna.ical4j.extensions.property; | ||
exports net.fortuna.ical4j.extensions.validate; | ||
} |