forked from elastic/logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (31 loc) · 898 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
description = """Logstash X-Pack"""
repositories {
mavenCentral()
}
buildscript {
repositories {
mavenCentral()
}
}
dependencies {
testCompile project(':logstash-core')
testCompile 'org.assertj:assertj-core:3.8.0'
testCompile 'junit:junit:4.12'
}
test {
exclude '/**'
}
task rubyTests(type: Test) {
inputs.files fileTree("${projectDir}/spec")
inputs.files fileTree("${projectDir}/lib")
inputs.files fileTree("${projectDir}/modules")
systemProperty 'logstash.core.root.dir', projectDir.absolutePath
include '/org/logstash/xpack/test/RSpecTests.class'
}
task rubyIntegrationTests(type: Test) {
inputs.files fileTree("${projectDir}/qa")
inputs.files fileTree("${projectDir}/lib")
inputs.files fileTree("${projectDir}/modules")
systemProperty 'logstash.core.root.dir', projectDir.absolutePath
include '/org/logstash/xpack/test/RSpecIntegrationTests.class'
}