-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
47 lines (39 loc) · 1.2 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.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE")
}
}
plugins {
id 'java'
id 'eclipse'
id 'idea'
id 'net.ltgt.apt' version '0.8'
}
apply plugin: 'org.springframework.boot'
jar {
baseName = 'graphql-java-spring-example'
version = '0.1.0'
}
repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile 'com.graphql-java:graphql-java:2.2.0'
compile "com.graphql-java:graphql-java-annotations:0.13.1"
compile "postgresql:postgresql:9.1-901-1.jdbc4"
compile "org.hsqldb:hsqldb:2.3.2"
compile "org.json:json:20140107"
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.springframework.boot:spring-boot-starter-data-rest")
compile 'org.mapstruct:mapstruct-jdk8:1.1.0.Final'
compile "org.mapstruct:mapstruct-processor:1.1.0.Final"
compile("org.springframework.boot:spring-boot-starter-web")
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('com.jayway.jsonpath:json-path')
apt 'org.mapstruct:mapstruct-processor:1.1.0.Final'
}