xpipe/build.gradle

37 lines
1.2 KiB
Groovy
Raw Normal View History

2022-06-18 11:17:08 +12:00
plugins {
2023-01-27 15:34:46 +13:00
id "io.codearte.nexus-staging" version "0.30.0"
2022-06-18 11:17:08 +12:00
}
2023-01-27 15:34:46 +13:00
def getArchName() {
var arch = System.getProperty("os.arch").toLowerCase(Locale.ROOT)
if (arch == 'amd64' || arch == 'x86_64') {
return 'x86_64'
}
if (arch == 'arm' || arch == 'aarch64') {
return 'arm64'
}
if (arch == 'x86') {
return 'x86'
}
return arch
}
2023-01-27 15:34:46 +13:00
project.ext {
ci = System.getenv('CI') != null
os = org.gradle.internal.os.OperatingSystem.current()
2023-04-05 04:11:31 +12:00
allExtensions = Arrays.stream(file("$rootDir/ext").list())
.filter(s -> !s.equals('csv') && !s.equals('office') && !s.equals('pdx') && !s.equals('jackson') && !s.equals('collections'))
.map(l -> project(":$l")).toList()
2023-01-27 15:34:46 +13:00
fullVersion = file("$rootDir/private_files.txt").exists()
arch = getArchName()
privateExtensions = file("$rootDir/private_extensions.txt").exists() ? file("$rootDir/private_extensions.txt").readLines() : []
2023-02-01 23:05:26 +13:00
isFullRelease = System.getenv('RELEASE') != null && Boolean.parseBoolean(System.getenv('RELEASE'))
versionString = file('version').text + (isFullRelease ? '' : '-SNAPSHOT')
2023-02-03 02:58:50 +13:00
canonicalVersionString = file('version').text
2023-02-11 10:52:20 +13:00
buildId = UUID.nameUUIDFromBytes(versionString.getBytes())
2023-02-11 02:46:54 +13:00
obfuscate = true
2023-01-27 15:34:46 +13:00
}