forked from willuhn/jameica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (31 loc) · 899 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
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.7
compileJava.options.encoding = 'ISO-8859-1'
eclipse {
classpath {
downloadSources = true
}
}
repositories {
mavenCentral()
}
dependencies {
compile 'org.apache.xmlrpc:xmlrpc-client:+'
compile 'org.bouncycastle:bcprov-jdk15on:+'
compile 'org.bouncycastle:bcpkix-jdk15on:+'
compile 'com.h2database:h2:+'
compile 'commons-cli:commons-cli:+'
compile 'commons-lang:commons-lang:2.+'
compile 'commons-collections:commons-collections:3.+' // Version 3 brauchen wir noch wegen Velocity.
compile 'commons-logging:commons-logging:1.+'
compile 'com.mckoi:mckoisqldb:+'
compile 'mysql:mysql-connector-java:5.+'
compile 'be.cyberelf.nanoxml:nanoxml:+'
compile 'org.apache.velocity:velocity:+'
compile 'oro:oro:+'
}
task download(type: Copy) {
into "lib/download"
from configurations.runtime
}