-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
51 lines (47 loc) · 1.64 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
buildscript {
ext {
springBootVersion = '1.5.1.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'war'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
jar {
baseName = 'ticketsale'
version = '0.0.1'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web:1.5.1.RELEASE')
compile('org.springframework.boot:spring-boot-starter-tomcat:1.5.1.RELEASE')
compile('org.springframework.boot:spring-boot-starter-data-jpa:1.5.1.RELEASE')
compile('org.springframework.security:spring-security-core:4.2.1.RELEASE')
compile('org.springframework.security:spring-security-config:4.2.1.RELEASE')
compile('org.springframework.security:spring-security-web:4.2.1.RELEASE')
compile('org.springframework.security.oauth:spring-security-oauth2:2.0.12.RELEASE')
compile('org.springframework.boot:spring-boot-starter-mail')
compile('org.thymeleaf:thymeleaf:3.0.3.RELEASE')
compile('org.thymeleaf:thymeleaf-spring4:3.0.3.RELEASE')
compile('org.apache.commons:commons-lang3:3.5')
compile('io.springfox:springfox-swagger2:2.6.1')
compile('io.springfox:springfox-swagger-ui:2.6.1')
compile('com.google.guava:guava:20.0')
compile('com.google.zxing:core:3.3.0')
compile('mysql:mysql-connector-java')
compile('commons-dbcp:commons-dbcp')
compile('com.sun.mail:javax.mail:1.5.6')
compile fileTree(dir: 'lib', include: ['*.jar'])
testCompile('org.springframework.boot:spring-boot-starter-test')
}