-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (46 loc) · 1.66 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
/**
* Copyright (C) 2014, scenarioo.org Development Team
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* As a special exception, the copyright holders of this library give you
* permission to link this library with independent modules, according
* to the GNU General Public License with "Classpath" exception as provided
* in the LICENSE file that accompanied this code.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
group = 'org.scenarioo'
version = '1.0.0-SNAPSHOT'
apply plugin: 'eclipse'
apply plugin: 'java'
sourceCompatibility=1.8
targetCompatibility=1.8
repositories {
maven {
url "https://raw.github.com/scenarioo/mvn-repo/master"
}
mavenCentral()
}
dependencies {
compile 'org.seleniumhq.selenium:selenium-java:2.+'
compile 'org.scenarioo:scenarioo-java:2.0.+'
compile 'org.apache.commons:commons-lang3:3.0.1'
compile 'commons-io:commons-io:1.3.2'
compile 'commons-codec:commons-codec:1.2'
compile 'log4j:log4j:1.2.17'
compile 'junit:junit:4.11'
compile 'org.dbunit:dbunit:2.5.0'
compile 'mysql:mysql-connector-java:5.1.16'
}
task wrapper(type: Wrapper) {
}