-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
44 lines (32 loc) · 995 Bytes
/
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
buildscript {
ext.kotlin_version = "1.3.50"
ext.docker_compose_version = "0.9.4"
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.avast.gradle:gradle-docker-compose-plugin:$docker_compose_version"
}
}
plugins {
id 'com.bmuschko.docker-remote-api' version "5.0.0"
}
// Apply the java plugin to add support for Java
apply plugin: 'idea'
apply plugin: 'kotlin'
// In this section you declare where to find the dependencies of your project
allprojects {
repositories {
mavenCentral()
jcenter()
}
}
// In this section you declare the dependencies for your production and test code
dependencies {
implementation project(":dashboards")
}
build.dependsOn(":docker-grafonnet:buildDocker")
build.dependsOn(":dashboards:generateDashboards")
assemble.mustRunAfter clean
build {
dependsOn(":docker-cassandra-build:buildDocker")
dependsOn(":docker-grafonnet:buildDocker")
}