-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
91 lines (78 loc) · 2.34 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
import groovy.json.JsonOutput
import groovy.json.JsonSlurper
plugins {
id "com.moowork.node" version "0.12"
}
dependencies {
// dashboard files for grafana include documentation which is injected in the dashboard when the corresponding project is built.
// Therefore stagmeonitor-grafana-elasticsearch depends on them.
getProjectsToRelease().each {
if (it.name != "stagemonitor-eum-server") {
compile it
}
}
}
project.buildDir = "dist"
node {
// Version of node to use.
version = '4.4.3'
download = true
}
def processResourcesTasks = getProjectsToRelease().collect { it.tasks.processResources }
task collectDashboards(dependsOn: processResourcesTasks) {
doLast {
copy {
from project.parent.fileTree(".") {
include "**/build/**/grafana/Elasticsearch*.json"
exclude "Grafana1"
}.files
into "$buildDir/dashboards"
rename { String fileName ->
fileName.toLowerCase()
}
includeEmptyDirs = false
}
}
}
def getDashboardsJson() {
def slurper = new JsonSlurper()
def dashboards = []
file("$buildDir/dashboards/").listFiles().each {
def relativePathToDashboard = it.canonicalPath - (project.buildDir.canonicalPath + '/')
def originalDashboardPath = project.parent.fileTree(".") {
include "*/src/**/grafana/Elasticsearch*.json"
}.find({ file ->
file.canonicalPath.toLowerCase().endsWith(it.name)
}).canonicalPath
def relativeOriginalDashboardPath = originalDashboardPath.replace(rootDir.canonicalPath + '/', '')
def projectName = relativeOriginalDashboardPath.substring(0, relativeOriginalDashboardPath.indexOf("/"))
dashboards << [
'type' : "dashboard",
'name' : slurper.parseText(it.text).title,
'path' : relativePathToDashboard,
'stagemonitorPlugin': projectName,
'revision' : project.version
]
}
return JsonOutput.prettyPrint(JsonOutput.toJson(dashboards))
}
task addDashboardsToPluginJson(dependsOn: collectDashboards) {
doLast {
copy {
from 'src'
into "$buildDir"
include 'plugin.json'
expand(
'dashboards': getDashboardsJson(),
'version': version,
'releaseDate': new Date().format("yyyy-MM-dd")
)
}
}
}
task copyAssets(type: Copy) {
from 'src', 'README.md'
into "$buildDir"
exclude 'plugin.json', '*.js'
}
task buildModule(dependsOn: [copyAssets, addDashboardsToPluginJson, npm_install, npm_run_build])