-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
49 lines (42 loc) · 915 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
43
44
45
46
47
48
49
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
allprojects {
sourceCompatibility = 1.6
targetCompatibility = 1.6
}
group = 'com.redhat.qe'
version = '1.0.0'
sourceSets {
main {
java {
srcDirs "src"
}
}
}
eclipse {
classpath {
defaultOutputDir = file('build')
}
}
repositories {
mavenCentral()
[
'https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads',
'http://clojars.org/repo',
'http://download.java.net/maven/2/',
'http://repository.codehaus.org',
'http://snapshots.repository.codehaus.org'
].each { repo ->
maven {
url repo
}
}
}
dependencies {
compile "com.trilead:trilead-ssh2:build213-svnkit-1.3-patch",
"com.redhat.qe:jul.test.records:1.0.1",
"com.redhat.qe:assertions:1.0.2"
}
jar {
}