-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
79 lines (68 loc) · 2 KB
/
build.gradle
File metadata and controls
79 lines (68 loc) · 2 KB
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
apply plugin: 'spring-boot'
buildscript
{
repositories
{
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/springsource-milestones" }
}
dependencies
{
classpath('org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE')
}
}
jar
//war
{
baseName = 'menirukanmu'
version = '0.1.0'
}
repositories
{
jcenter()
}
configurations
{
providedRuntime
}
task (distclean, dependsOn: clean) <<
{
delete ".gradle"
}
configure(distclean)
{
group = 'Build'
description = 'Clean the build result and the .gradle directory'
}
ext['okhttp3.version'] = '3.4.1'
dependencyManagement {
dependencies {
dependency 'com.squareup.retrofit2:converter-jackson:2.1.0'
dependency 'com.squareup.retrofit2:retrofit:2.1.0'
dependency 'com.squareup.okhttp3:logging-interceptor:' + ext['okhttp3.version']
dependency 'com.squareup.okhttp3:mockwebserver:' + ext['okhttp3.version']
}
}
dependencies
{
compile('org.springframework.boot:spring-boot-starter-web:1.4.0.RELEASE')
compile('org.springframework:spring-jdbc:4.3.2.RELEASE')
compile('org.apache.httpcomponents:httpclient:4.5.2')
compile('org.json:json:20160212')
compile('com.google.code.gson:gson:2.7')
compile('com.linecorp.bot:line-bot-api-client:1.6.0')
compile('com.linecorp.bot:line-bot-model:1.6.0')
compile('org.postgresql:postgresql:9.4.1212.jre7')
compile('oauth.signpost:signpost-core:1.2.1.2')
compile('oauth.signpost:signpost-commonshttp4:1.2.1.2')
compile('com.cloudinary:cloudinary-http44:1.5.0')
compile('com.cloudinary:cloudinary-taglib:1.5.0')
compile('org.apache.commons:commons-lang3:3.1')
compile('org.apache.httpcomponents:httpmime:4.5.2')
compile('org.apache.httpcomponents:httpcore:4.4.4')
compile('org.apache.commons:commons-io:1.3.2')
compile('org.apache.httpcomponents:httpasyncclient:4.1.2')
testCompile 'com.squareup.okhttp3:mockwebserver'
providedRuntime('org.springframework.boot:spring-boot-starter-tomcat:1.4.0.RELEASE')
testCompile("junit:junit")
}