-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (33 loc) · 1.26 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
plugins {
id 'java'
id 'org.springframework.boot' version '2.5.2'
id "io.spring.dependency-management" version "1.0.11.RELEASE"
}
sourceCompatibility = 1.15
targetCompatibility = 1.15
repositories {
mavenCentral()
mavenLocal()
}
ext {
springBootVersion = '2.5.2'
gqlSpringBootVersion = '5.0.2'
gqlJavaToolsVersion = '5.2.4'
commonsLang3Version = '3.4'
junitVersion = '4.12'
baatCoreVersion = '1.0'
}
dependencies {
implementation "org.springframework.boot:spring-boot-dependencies:${project.springBootVersion}"
implementation "org.springframework.boot:spring-boot-starter-web:${project.springBootVersion}"
implementation "com.graphql-java:graphql-spring-boot-starter:${project.gqlSpringBootVersion}"
implementation "com.graphql-java:graphiql-spring-boot-starter:${project.gqlSpringBootVersion}"
implementation "com.graphql-java:graphql-java-tools:${project.gqlJavaToolsVersion}"
implementation "org.apache.commons:commons-lang3:${project.commonsLang3Version}"
implementation "org.baat:core:${project.baatCoreVersion}"
testImplementation "org.springframework.boot:spring-boot-starter-test:${project.springBootVersion}"
testImplementation "junit:junit:${project.junitVersion}"
}
test {
useJUnitPlatform()
}