-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (61 loc) · 1.57 KB
/
build.gradle
File metadata and controls
69 lines (61 loc) · 1.57 KB
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
buildscript {
repositories {
mavenCentral()
maven {
url 'https://armory.jfrog.io/armory/gradle-plugins/'
credentials {
username = "${artifactory_user}"
password = "${artifactory_password}"
}
}
}
}
plugins {
id("io.spinnaker.plugin.bundler").version("$spinnakerGradleVersion")
id("com.palantir.git-version").version("0.12.3")
}
spinnakerBundle {
pluginId = "Armory.PreConfiguredJobPlugin.RunScript"
description = "An Armory plugin that provides a Run Script stage as a pre-configured job."
provider = "https://github.com/$pluginOwner"
version = rootProject.version
}
version = normalizedVersion()
subprojects {
group = "com.armory.plugin"
version = rootProject.version
repositories {
mavenCentral()
jcenter()
maven {
url 'https://armory.jfrog.io/armory/gradle-plugins/'
credentials {
username = "${artifactory_user}"
password = "${artifactory_password}"
}
}
maven {
url 'https://armory.jfrog.io/armory/gradle-dev-local/'
credentials {
username = "${artifactory_user}"
password = "${artifactory_password}"
}
}
maven {
url 'https://armory.jfrog.io/artifactory/spinnaker/'
credentials {
username = "${artifactory_user}"
password = "${artifactory_password}"
}
}
}
}
String normalizedVersion() {
String fullVersion = gitVersion()
String normalized = fullVersion.split("-").first()
if (fullVersion.contains("dirty")) {
return "$normalized-SNAPSHOT"
} else {
return normalized
}
}