-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (35 loc) · 1.11 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
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.codehaus.groovy:groovy:3.0.8'
}
}
plugins {
id 'org.springframework.boot' version '2.5.6'
id 'java'
}
group = 'org.demo'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
def springBootVersion = '2.5.6'
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
implementation(platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}"))
implementation 'com.amplicode.ldap:amplicode-ldap-starter:0.1.0-SNAPSHOT'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.liquibase:liquibase-core:4.6.1'
implementation 'com.graphql-java:graphiql-spring-boot-starter:5.0.2'
runtimeOnly 'org.postgresql:postgresql:42.3.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}