-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
100 lines (84 loc) · 2.59 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import java.nio.file.Paths
initializeWorkspace()
buildscript {
ext.kotlin_version = '1.4.31'
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.spring.gradle:dependency-management-plugin:1.0.3.RELEASE"
}
}
def localRepo = anyParamPath('TC_LOCAL_REPO')
ext {
teamcityVersion = anyParam('teamcityVersion') ?: '2024.11'
def correctVersion = project.hasProperty('versionNumber') && property('versionNumber') ==~ /\d+\.\d+\.\d+.*/
versionNumber = correctVersion ? property('versionNumber') : 'SNAPSHOT-' + new Date().format('yyyyMMddHHmmss')
projectIds = ['group': 'teamcity-aws-ecs-plugin', 'version': versionNumber]
teamcityJavaHome = System.properties['java.home']
amazonUtilVersion = 'release-99472-133-g49044ab'
}
allprojects {
group = projectIds.group
version = projectIds.version
apply plugin: 'kotlin'
apply plugin: 'idea'
repositories {
mavenCentral()
if (localRepo) {
maven {
name = "local-teamcity-artifacts"
url "file:///${localRepo}"
}
}
}
}
subprojects {
test.useTestNG()
jar.version = null
}
apply plugin: 'io.spring.dependency-management'
idea {
module {
downloadJavadoc = false
downloadSources = true
}
}
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);
}
}
}
}