-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
50 lines (44 loc) · 1.47 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
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-release" }
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.5.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
if (project.hasProperty('profile')
&& project.getProperty('profile') == 'deployable') {
apply from: 'profile-deployable.gradle'
} else {
apply from: 'profile-standalone.gradle'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-release" }
maven { url "https://repository.jboss.org/nexus/content/repositories/releases" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.hsqldb:hsqldb")
compile("org.flywaydb:flyway-core")
compile('org.apache.velocity:velocity:1.7')
compile('com.squareup.okhttp:okhttp:2.0.0')
compile('com.squareup.okhttp:okhttp-urlconnection:2.0.0')
compile('com.squareup.retrofit:retrofit:1.6.1')
compile('com.twilio.sdk:twilio:7.1.0')
compile('org.drizzle.jdbc:drizzle-jdbc:1.3')
compile('org.jsmpp:jsmpp:2.3.0')
testCompile("org.springframework.boot:spring-boot-starter-test")
}
task wrapper(type: Wrapper) {
gradleVersion = '1.11'
}