-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
86 lines (75 loc) · 2.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
buildscript {
ext {
springBootVersion = '1.5.9.RELEASE'
karateVersion = '0.6.2'
masterThought = '3.13.0'
}
repositories {
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url "http://repo.spring.io/release" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath "org.liquibase:liquibase-gradle-plugin:1.2.4"
classpath('org.yaml:snakeyaml:1.15')
classpath "org.liquibase.ext:liquibase-hibernate5:3.6"
}
}
plugins {
id 'org.liquibase.gradle' version '1.2.4'
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse-wtp'
apply plugin: 'org.springframework.boot'
apply plugin: 'org.liquibase.gradle'
apply plugin: 'application'
jar {
baseName = 'heroku-springify'
}
apply from: './gradle/profiles.gradle'
apply from: './gradle/db.gradle'
group = 'com.kabasakalis'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
description = 'Hypermedia Driven Music API.'
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/release" }
maven { url "http://repo.spring.io/milestone" }
maven { url "http://repo.spring.io/snapshot" }
maven { url 'http://oss.jfrog.org/artifactory/oss-snapshot-local/' }
}
configurations {
providedRuntime
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-aop')
compile('org.springframework.boot:spring-boot-starter-cache')
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('org.springframework.boot:spring-boot-starter-data-rest')
compile('org.springframework.data:spring-data-rest-hal-browser')
compile('org.springframework.boot:spring-boot-starter-hateoas')
compile('org.springframework.boot:spring-boot-starter-jersey')
compile('org.springframework.boot:spring-boot-starter-jooq')
compile('org.liquibase:liquibase-core')
compile('org.springframework.boot:spring-boot-starter-security')
compile("io.jsonwebtoken:jjwt:0.9.0")
compile('com.github.ulisesbocchio:jasypt-spring-boot-starter:1.16')
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.0'
compile 'commons-io:commons-io:2.6'
compile 'com.github.java-json-tools:json-schema-validator:2.2.8'
runtime('org.springframework.boot:spring-boot-devtools')
compileOnly('org.springframework.boot:spring-boot-configuration-processor')
testCompile 'junit:junit'
testCompile 'com.intuit.karate:karate-junit4:' + karateVersion
testCompile 'com.intuit.karate:karate-apache:' + karateVersion
testCompile 'net.masterthought:cucumber-reporting:' + masterThought
testCompile 'ch.qos.logback:logback-classic:1.2.3'
testCompile 'ch.qos.logback:logback-core:1.2.3'
}