-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (48 loc) · 1.89 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
plugins {
id 'org.springframework.boot' version '2.2.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
}
group = 'tech.miniswp.sparql'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'
configurations {
developmentOnly
runtimeClasspath {
extendsFrom developmentOnly
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
implementation 'org.webjars:webjars-locator-core'
implementation 'org.webjars:sockjs-client:1.0.2'
implementation 'org.webjars:stomp-websocket:2.3.3'
implementation 'org.webjars:bootstrap:3.3.7'
implementation 'org.webjars:jquery:3.1.1-1'
compile group: 'org.json', name: 'json', version: '20090211'
implementation 'org.apache.jena:jena-core:3.10.0'
implementation 'org.apache.jena:jena-arq:3.10.0'
implementation 'org.apache.jena:jena-tdb:3.10.0'
implementation 'org.apache.jena:jena-iri:3.10.0'
implementation 'org.codehaus.jackson:jackson-mapper-asl:1.9.13'
implementation 'org.eclipse.rdf4j:rdf4j-storage:3.1.0'
implementation 'org.eclipse.rdf4j:rdf4j-tools-federation:3.1.0'
implementation 'org.eclipse.rdf4j:rdf4j-repository-http'
// https://mvnrepository.com/artifact/com.ontotext.graphdb/graphdb-free-runtime
compile group: 'com.ontotext.graphdb', name: 'graphdb-free-runtime', version: '9.1.1'
compile group: 'edu.stanford.nlp', name: 'stanford-corenlp', version: '3.9.2'
compile group: 'edu.stanford.nlp', name: 'stanford-corenlp', version: '3.9.2', classifier: 'models'
}
test {
useJUnitPlatform()
}