-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (29 loc) · 959 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
group 'org.stagemonitor'
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = 1.8
repositories {
mavenCentral()
mavenLocal()
}
run {
mainClassName = "org.stagemonitor.init.InitElasticsearch"
if (project.hasProperty("url")) {
args += url
}
}
dependencies {
compile "org.slf4j:slf4j-simple:1.7.25"
compile 'javax.servlet:javax.servlet-api:3.0.1'
compile 'net.sf.ehcache:ehcache-core:2.5.1'
compile "org.stagemonitor:stagemonitor-web-servlet:$stagemonitorVersion"
compile "org.stagemonitor:stagemonitor-tracing-elasticsearch:$stagemonitorVersion"
// optional plug-ins
// compile "org.stagemonitor:stagemonitor-os:$stagemonitorVersion"
// compile "org.stagemonitor:stagemonitor-alerting:$stagemonitorVersion"
// compile "org.stagemonitor:stagemonitor-ehcache:$stagemonitorVersion"
}
task wrapper(type: Wrapper) {
gradleVersion = "4.10.2"
distributionType = "all"
}