-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (45 loc) · 1.44 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
plugins {
id 'org.springframework.boot' version '1.5.4.RELEASE'
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'eclipse'
repositories {
jcenter()
maven {
url myrepoReadUrl
credentials {
username 'myMavenRepo'
password myrepoReadPassword
}
}
}
jar {
baseName = 'templateApp'
version = '1.0-SNAPSHOT'
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-data-jpa'
compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
compile 'org.springframework.boot:spring-boot-devtools'
compile 'org.springframework.security:spring-security-web'
compile 'org.springframework.security:spring-security-config'
compile 'io.rebelsouls.lib:rebelsouls-users:1.2'
compile 'io.rebelsouls.lib:rebelsouls-mail:1.1'
compile 'io.rebelsouls.lib:rebelsouls-util:1.10'
compile 'org.liquibase:liquibase-core:3.5.3'
compile 'com.h2database:h2'
compile 'org.postgresql:postgresql:42.1.1'
compile 'ch.qos.logback:logback-core:1.2.3'
compile 'ch.qos.logback:logback-classic:1.2.3'
compileOnly 'org.projectlombok:lombok:1.16.18'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'junit:junit:4.12'
}
test {
exclude 'io/rebelsouls/integration/**'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
mainClassName = 'io.rebelsouls.template.TemplateApp'