-
Notifications
You must be signed in to change notification settings - Fork 25
/
build.gradle
66 lines (58 loc) · 2.09 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import java.nio.file.Paths
initializeWorkspace()
def localRepo = anyParamPath('TC_LOCAL_REPO')
allprojects {
repositories {
if (localRepo) {
maven {
name = "local-teamcity-artifacts"
url "file:///${localRepo}"
}
}
mavenCentral()
maven {
url = uri("https://download.jetbrains.com/teamcity-repository")
}
}
}
ext {
def correctVersion = project.hasProperty('versionNumber') && property('versionNumber') ==~ /\d+(\.\d+\.\d+.*)?/
def versionNumber = correctVersion ? property('versionNumber') : 'SNAPSHOT-' + new Date().format('yyyyMMddHHmmss')
projectIds = ['group': 'teamcity-dotnet-plugin', 'version': versionNumber, 'artifact': 'dotnet']
teamcityVersion = anyParam('teamcityVersion') ?: '2024.11-SNAPSHOT'
isDotnetTasksDisabled = project.hasProperty('dotnetTasks') && project.property('dotnetTasks').toString().toLowerCase() == 'disabled'
}
def anyParamPath(String... names) {
def param = anyParam(names);
if (param == null || param.isEmpty())
return null
return (Paths.get(param).isAbsolute()) ?
Paths.get(param) : getRootDir().toPath().resolve(param)
}
def anyParam(String... names) {
def param
try {
param = names.findResult {
project.hasProperty(it) ? project.getProperty(it) : System.getProperty(it) ?: System.getenv(it) ?: null
}
if (param == null || param.isEmpty())
param = null
} finally {
println("AnyParam: $names -> $param")
}
return param
}
def initializeWorkspace() {
if (System.getProperty("idea.active") != null) {
println "Attempt to configure workspace in IDEA"
def coreVersionProperties = project.projectDir.toPath().parent.parent.resolve(".version.properties")
if (coreVersionProperties.toFile().exists()) {
def p = new Properties().tap {
it.load(new FileInputStream(coreVersionProperties.toFile()))
}
p.forEach { k,v ->
System.setProperty(k, v);
}
}
}
}