-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
117 lines (98 loc) · 2.91 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import java.nio.file.Paths
plugins {
id "org.jetbrains.kotlin.jvm" version "1.6.0"
}
initializeWorkspace()
repositories {
mavenCentral()
}
ext {
versionNumber = project.hasProperty('versionNumber') ? property('versionNumber') : 'SNAPSHOT-' + new Date().format('yyyyMMddHHmmss')
projectIds = ['group': 'teamcity-nuget-support', 'version': versionNumber]
teamcityVersion = anyParam('teamcityVersion') ?: '2022.10'
downloadsDir = project.findProperty('downloads.dir') ?: "$rootDir/downloads"
serversDir = project.findProperty('servers.dir') ?: "$rootDir/servers"
olingoVersion = '2.0.10'
}
def localRepo = anyParamPath('TC_LOCAL_REPO')
group = projectIds.group
version = projectIds.version
allprojects {
group = projectIds.group
version = projectIds.version
}
subprojects { subproject ->
if (!subproject.name.endsWith("extensions")) {
apply plugin: "kotlin"
sourceSets {
main {
java {
srcDirs = ['src']
}
resources {
srcDirs = ['resources']
}
}
test {
java {
srcDirs = ['test']
}
resources {
srcDirs = ['testResources']
}
}
}
repositories {
maven { url '../nuget-local-repo' }
if (localRepo) {
maven {
name = "local-teamcity-artifacts"
url "file:///${localRepo}"
}
}
maven { url 'https://repository.apache.org/snapshots/' }
mavenCentral()
mavenLocal()
}
test.useTestNG()
jar.version = null
tasks.withType(JavaCompile) {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
}
}
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);
}
}
}
}