mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 17:10:27 +00:00
22 lines
768 B
Groovy
22 lines
768 B
Groovy
dependencies {
|
|
implementation files("${project.layout.buildDirectory.get()}/generated-modules/prettytime-5.0.2.Final.jar")
|
|
}
|
|
|
|
addDependenciesModuleInfo {
|
|
overwriteExistingFiles = true
|
|
jdepsExtraArgs = ['-q']
|
|
outputDirectory = file("${project.layout.buildDirectory.get()}/generated-modules")
|
|
modules {
|
|
module {
|
|
artifact 'org.ocpsoft.prettytime:prettytime:5.0.2.Final'
|
|
moduleInfoSource = '''
|
|
module org.ocpsoft.prettytime {
|
|
exports org.ocpsoft.prettytime;
|
|
exports org.ocpsoft.prettytime.format;
|
|
exports org.ocpsoft.prettytime.i18n;
|
|
exports org.ocpsoft.prettytime.units;
|
|
}
|
|
'''
|
|
}
|
|
}
|
|
}
|