-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
71 lines (58 loc) · 1.43 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
apply plugin: "idea"
apply plugin: "java"
apply plugin: "maven"
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
distributionUrl = "http://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
}
sourceSets {
main {
java {
srcDir 'main/src'
}
resources {
srcDir 'main/resources'
}
}
test {
java {
srcDir 'test/src'
}
resources {
srcDir 'test/resources'
}
}
}
group = "com.complexible.pinto"
version = "2.0.1-SNAPSHOT"
ext {
projectDescription = "Pinto: A lightweight framework for mapping Java Beans into RDF and back again"
projectUrl = "/~https://github.com/complexible/pinto"
}
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
maven {
url "http://maven.stardog.com"
}
}
dependencies {
compile (group: "com.google.guava", name: "guava", version: "18.0") {
exclude group: "com.google.code.findbugs"
}
compile "commons-beanutils:commons-beanutils:1.9.2"
compile "commons-codec:commons-codec:1.10"
compile "com.complexible.common:cp-openrdf-utils:4.0.2"
compile ("com.complexible.common:cp-common-utils:5.0.1") {
exclude group: "org.slf4j"
}
// these should be coming from cp-openrdf-utils, but it's missing these
compile "org.openrdf.sesame:sesame-rio-ntriples:4.0.0"
compile "org.slf4j:slf4j-api:1.7.7"
compile "org.slf4j:slf4j-jdk14:1.7.7"
testCompile 'junit:junit:4.11'
}
tasks.withType(Test) {
systemProperties = System.getProperties()
}