-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
58 lines (48 loc) · 1.08 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
buildscript {
repositories {
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'http://smartbearsoftware.com/repository/maven2/' }
}
}
plugins {
id 'java'
id 'io.github.daggerok.soapui-runner' version '5.3.0-5' apply false
}
group 'daggerok'
version '0.0.1'
allprojects {
if ('subprojects' == project.name) return
apply plugin: 'io.github.daggerok.soapui-testrunner'
testrunner {
projectProperties = [
'p=base',
'p1=p1',
'apiEndpoint=https://daggerok.github.io-no'
]
systemProperties = [
's=base',
's1=s1',
"soapui.ext.libraries=$buildDir/soapui/ext-nono"
]
}
}
testrunner {
projectFile = "$projectDir/soapui-test-project.xml"
projectProperties = [
'p=override',
'p2=p2',
'apiEndpoint=https://daggerok.github.io'
]
systemProperties = [
's=override',
's2=s2',
"soapui.ext.libraries=$buildDir/soapui/ext"
]
}
repositories { jcenter() }
dependencies {
extDir "org.postgresql:postgresql:9.4.1212.jre7"
}
task wrapper(type: Wrapper) {
gradleVersion = '3.0'
}