-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·64 lines (50 loc) · 1.92 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
buildscript {
ext {
springBootVersion = '1.5.8.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("org.junit.platform:junit-platform-gradle-plugin:1.0.0-M4")
}
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
group = 'ca.sfu'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
ext["thymeleaf.version"] = "3.0.2.RELEASE"
ext["thymeleaf-layout-dialect.version"] = "2.0.1"
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
compile ("org.thymeleaf.extras:thymeleaf-extras-springsecurity4:3.0.0.RELEASE")
compile ("io.github.jpenren:thymeleaf-spring-data-dialect:3.1.1")
compile("org.springframework.boot:spring-boot-devtools")
compile("org.hibernate:hibernate-validator")
compile("org.apache.tomcat.embed:tomcat-embed-el")
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile('mysql:mysql-connector-java')
compile('org.springframework.boot:spring-boot-starter-mail')
compile('org.springframework.boot:spring-boot-starter-web')
compile('javax.mail:mail:1.4.7')
compile("org.springframework.boot:spring-boot-starter-security")
// https://mvnrepository.com/artifact/org.springframework.security/spring-security-cas
compile group: 'org.springframework.security', name: 'spring-security-cas', version: '3.1.0.RELEASE'
// https://mvnrepository.com/artifact/javax.inject/javax.inject
compile group: 'javax.inject', name: 'javax.inject', version: '1'
compile group: 'org.apache.pdfbox', name: 'pdfbox', version: '2.0.1'
testCompile("org.springframework.security:spring-security-test")
testCompile('org.springframework.boot:spring-boot-starter-test')
testCompile('junit:junit:4.12')
}
test {
exclude 'ca/sfu/delta/TeamDeltaProjectApplicationTests*'
}
test.outputs.upToDateWhen {false}