-
Notifications
You must be signed in to change notification settings - Fork 2
/
libraries.gradle
49 lines (33 loc) · 1.25 KB
/
libraries.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
ext {
jenaVersion = "2.11.0"
springVersion = "3.2.4.RELEASE"
jettyVersion = "9.1.0.v20131115"
libraries = [
jena : "org.apache.jena:jena-arq:${jenaVersion}",
cli: "commons-cli:commons-cli:1.2",
utils : [ 'commons-io:commons-io:1.4',
'org.ostermiller:utils:1.07.00',
'com.google.guava:guava:12.0',
'joda-time:joda-time:2.1',
'org.aksw.commons:util-standalone:0.5-SNAPSHOT',
'org.apache.commons:commons-math3:3.2',
'org.apache.commons:commons-lang3:3.1'
],
sqlutils : [
'net.sf.jsqlparser:jsqlparser:0.8.1.SPARQLMAP-SNAPSHOT',
'com.jolbox:bonecp:0.7.1.RELEASE',
'net.sf.supercsv:super-csv:2.1.0'
],
spring: [ dependencies.create("org.springframework:spring-web:${springVersion}") {exclude(module: 'commons-logging')},
"org.springframework:spring-jdbc:${springVersion}"
],
springwebmvc: "org.springframework:spring-webmvc:${springVersion}",
servletapis: [ 'javax.servlet:servlet-api:2.4'],
jetty: [ dependencies.create("org.eclipse.jetty:jetty-runner:${jettyVersion}"){transitive = false}],
provdbs: ['org.hsqldb:hsqldb:2.3.1',
'org.postgresql:postgresql:9.2-1002-jdbc4',
'mysql:mysql-connector-java:5.1.11' ],
otherdbs: [],
junit: "junit:junit:4.11"
]
}