-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·36 lines (29 loc) · 872 Bytes
/
build.gradle
File metadata and controls
executable file
·36 lines (29 loc) · 872 Bytes
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
apply plugin: 'groovy'
apply from:'https://raw.github.com/tomhermann/gradle-scripts/master/sources-javadoc.gradle'
repositories {
mavenRepo urls: 'http://repo.jfrog.org/artifactory/repo'
}
configurations {
all*.exclude group: "commons-logging", module: "commons-logging"
}
sourceCompatibility = 1.6
targetCompatibility = sourceCompatibility
version = '0.0.1.RELEASE'
slf4jVersion = '1.6.2'
seleniumVersion = '2.15.0'
dependencies {
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '1.8.5'
compile (
"org.slf4j:slf4j-api:${slf4jVersion}",
"org.seleniumhq.selenium:selenium-java:${seleniumVersion}",
"org.seleniumhq.selenium:selenium-htmlunit-driver:${seleniumVersion}"
)
runtime (
"org.slf4j:jcl-over-slf4j:${slf4jVersion}",
"org.slf4j:slf4j-log4j12:${slf4jVersion}",
'log4j:log4j:1.2.16'
)
testCompile (
'junit:junit:4.10'
)
}