forked from Code4SocialGood/c4sg-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (49 loc) · 2.16 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
plugins {
id 'org.springframework.boot' version '1.5.2.RELEASE'
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
idea {
module {
downloadJavadoc = true
}
}
jar {
baseName = 'c4sg-services'
version = '0.0.1-SNAPSHOT'
}
bootRun {
systemProperties = System.properties
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-jdbc'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-mail'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-thymeleaf'
compile group: 'org.springframework.boot', name: 'spring-boot-devtools'
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.40'
compile group: 'org.modelmapper', name: 'modelmapper', version: '0.7.5'
compile group: 'com.vividsolutions', name: 'jts', version: '1.13'
compile group: 'com.bedatadriven', name: 'jackson-datatype-jts', version: '2.3'
compile group: 'com.sendgrid', name: 'sendgrid-java', version: '4.0.1'
compile group: 'org.hibernate', name: 'hibernate-spatial', version: '5.0.11.Final'
compile group: 'org.flywaydb', name: 'flyway-core', version: '3.2.1'
compile group: 'org.apache.commons', name: 'commons-email', version: '1.4'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '8.5.6'
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.4.0'
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.4.0'
compile group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.3.3'
compile group: 'net.minidev', name: 'json-smart', version: '2.2.1'
compile group: 'com.auth0', name: 'auth0-spring-security-api', version: '1.0.0-rc.2'
testCompile group: 'org.springframework.boot', name: 'spring-boot-starter-test'
testCompile group: 'com.icegreen', name: 'greenmail', version: '1.5.5'
}
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
}