-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
67 lines (52 loc) · 1.96 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
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
}
plugins {
id 'org.springframework.boot' version '3.2.2'
id 'io.spring.dependency-management' version '1.1.3'
id 'java'
id 'war'
}
group = 'cz.cvut.kbss.analysis'
version = '0.0.1-SNAPSHOT'
compileJava {
sourceCompatibility = '17'
targetCompatibility = '17'
}
repositories {
mavenCentral()
}
war {
enabled = true
}
sourceSets.main.java.srcDirs += "src/main/generated"
dependencies {
def jopaVersion = '2.0.2'
implementation "cz.cvut.kbss.jopa:jopa-impl:$jopaVersion"
implementation "cz.cvut.kbss.jopa:ontodriver-rdf4j:$jopaVersion"
implementation 'cz.cvut.kbss.jsonld:jb4jsonld-jackson:0.14.3'
implementation 'com.github.ledsoft:jopa-spring-transaction:0.3.0'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.security:spring-security-oauth2-core'
implementation 'org.springframework.data:spring-data-commons'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-resource-server'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'io.jsonwebtoken:jjwt:0.9.1'
implementation 'com.fasterxml:classmate:1.5.0'
implementation 'com.opencsv:opencsv:5.3'
implementation 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
providedRuntime 'jakarta.servlet:jakarta.servlet-api'
implementation 'javax.xml.bind:jaxb-api:2.3.1' // needed for java 17
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.springframework.security:spring-security-test'
}
test {
useJUnitPlatform()
}