forked from polyjdbc/polyjdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
91 lines (73 loc) · 2.82 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
plugins {
id 'java'
id 'groovy'
id 'maven'
id 'pl.allegro.tech.build.axion-release' version '1.4.0'
}
apply from: 'gradle/mavenCentralPublishing.gradle'
scmVersion {
tag {
prefix = 'polyjdbc'
}
versionCreator 'versionWithBranch'
}
project.group = 'org.polyjdbc'
project.version = scmVersion.version
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.7'
testCompile group: 'ch.qos.logback', name: 'logback-core', version: '1.0.13'
testCompile group: 'ch.qos.logback', name: 'logback-classic', version: '1.0.13'
testCompile group: 'org.testng', name: 'testng', version: '6.8.1'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.9.5'
testCompile group: 'org.assertj', name: 'assertj-core', version: '1.6.1'
testCompile group: 'com.googlecode.catch-exception', name: 'catch-exception', version: '1.2.0'
testCompile group: 'joda-time', name: 'joda-time', version: '2.3'
testCompile group: 'commons-dbcp', name: 'commons-dbcp', version: '1.4'
testCompile group: 'com.h2database', name: 'h2', version: '1.3.175'
testCompile group: 'org.postgresql', name: 'postgresql', version: '9.2-1003-jdbc4'
testCompile group: 'mysql', name: 'mysql-connector-java', version: '5.1.26'
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.0-groovy-2.4'
testCompile group: 'org.codehaus.gpars', name: 'gpars', version: '1.2.1'
testCompile group: 'cglib', name: 'cglib-nodep', version: '3.2.0'
}
task wrapper(type: Wrapper) {
gradleVersion = '3.1'
}
test {
useTestNG()
options {
suiteXmlFiles = [ project.file('src/test/resources/testng.xml') ]
}
if(project.hasProperty('integration')) {
options {
suiteXmlFiles = [ project.file('src/test/resources/testng.xml'), project.file('src/test/resources/testng-integration.xml') ]
}
}
//gradlew clean test -Pintegration-oracle
if(project.hasProperty('integration-oracle')) {
dependencies{
testCompile files('libs/ojdbc6.jar') //ojdbc6.jar should be manually copied to project /libs and .gitingored
}
options {
suiteXmlFiles = [ project.file('src/test/resources/testng-integration-oracle.xml') ]
}
}
//gradlew clean test -Pintegration-mssql
if(project.hasProperty('integration-mssql')) {
dependencies{
testCompile files('libs/sqljdbc4.jar') //sqljdbc4.jar should be manually copied to project /libs and .gitingored
}
options {
suiteXmlFiles = [ project.file('src/test/resources/testng-integration-mssql.xml') ]
}
}
testLogging {
events 'passed', 'failed', 'skipped'
exceptionFormat = 'full'
}
}