mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 15:40:23 +00:00
20 lines
527 B
Groovy
20 lines
527 B
Groovy
|
dependencies {
|
||
|
implementation files("$buildDir/generated-modules/versioncompare-1.5.0.jar")
|
||
|
}
|
||
|
|
||
|
addDependenciesModuleInfo {
|
||
|
overwriteExistingFiles = true
|
||
|
jdepsExtraArgs = ['-q']
|
||
|
outputDirectory = file("$buildDir/generated-modules")
|
||
|
modules {
|
||
|
module {
|
||
|
artifact "io.github.g00fy2:versioncompare:1.5.0"
|
||
|
moduleInfoSource = '''
|
||
|
module versioncompare {
|
||
|
exports io.github.g00fy2.versioncompare;
|
||
|
}
|
||
|
'''
|
||
|
}
|
||
|
}
|
||
|
}
|