forked from dsarlo-viso/blaze-spring-for-graphql-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (38 loc) · 1.91 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
plugins {
id 'org.springframework.boot' version '2.7.18'
id 'io.spring.dependency-management' version '1.1.4'
id 'java'
}
group = 'com.blaze.spring'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.h2database:h2'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-graphql'
testImplementation 'org.springframework.graphql:spring-graphql-test'
implementation 'com.graphql-java:graphql-java-extended-scalars:18.1'
implementation group: 'com.blazebit', name: 'blaze-persistence-entity-view-api', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-entity-view-impl', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-core-api', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-core-impl', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-integration-entity-view-spring', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-integration-spring-data-2.7', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-integration-hibernate-5.6', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-integration-spring-data-webmvc', version: '1.6.10'
implementation group: 'com.blazebit', name: 'blaze-persistence-integration-graphql', version: '1.6.10'
annotationProcessor group: 'com.blazebit', name: 'blaze-persistence-entity-view-processor', version: '1.6.10'
}
test {
useJUnitPlatform()
}