mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 15:40:23 +00:00
41 lines
No EOL
1.4 KiB
Groovy
41 lines
No EOL
1.4 KiB
Groovy
dependencies {
|
|
implementation files("${project.layout.buildDirectory.get()}/generated-modules/sentry-6.29.0.jar")
|
|
}
|
|
|
|
addDependenciesModuleInfo {
|
|
overwriteExistingFiles = true
|
|
jdepsExtraArgs = ['-q']
|
|
outputDirectory = file("${project.layout.buildDirectory.get()}/generated-modules")
|
|
modules {
|
|
module {
|
|
artifact 'io.sentry:sentry:6.29.0'
|
|
moduleInfoSource = '''
|
|
module io.sentry {
|
|
exports io.sentry;
|
|
opens io.sentry;
|
|
|
|
exports io.sentry.protocol;
|
|
opens io.sentry.protocol;
|
|
|
|
exports io.sentry.config;
|
|
opens io.sentry.config;
|
|
|
|
exports io.sentry.transport;
|
|
opens io.sentry.transport;
|
|
|
|
exports io.sentry.util;
|
|
opens io.sentry.util;
|
|
|
|
exports io.sentry.cache;
|
|
opens io.sentry.cache;
|
|
|
|
exports io.sentry.exception;
|
|
opens io.sentry.exception;
|
|
|
|
exports io.sentry.hints;
|
|
opens io.sentry.hints;
|
|
}
|
|
'''
|
|
}
|
|
}
|
|
} |