-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (33 loc) · 996 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
38
39
40
41
42
apply plugin: 'java'
apply plugin: 'eclipse'
defaultTasks 'build'
sourceCompatibility = 1.7
targetCompatibility = 1.7
group="de.mama.javascripttestrunner"
tasks.withType(Compile) { options.encoding = 'UTF-8' }
jar {
manifest {
attributes("Main-Class": "de.h2o.planme.apos.services.StandaloneConfigurationValidationService")
}
}
task fatJar(type: Jar) {
description "Building jar with all dependency class files in it so that this can be used for starting validation."
baseName = 'validation'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it)} }
exclude 'META-INF/MANIFEST.MF'
exclude 'META-INF/*.SF'
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
with jar
}
mainClassName = ""
repositories {
mavenCentral();
}
dependencies {
compile (
'org.seleniumhq.selenium:selenium-firefox-driver:2.37.0',
'org.seleniumhq.selenium:selenium-java:2.39.0',
'junit:junit:4.11'
)
}