-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
36 lines (29 loc) · 1.03 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
apply plugin:'war'
apply plugin:'jetty'
apply plugin:'idea'
apply plugin:'eclipse'
//===========================================================================
// Project Properties
//===========================================================================
ext {
theBuildNumber = project.hasProperty('buildNumber') ? project.get('buildNumber') : 'x'
}
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.guava:guava:14.0.1'
compile 'org.python:jython-standalone:2.5.3'
compile 'com.twilio.sdk:twilio-java-sdk:3.3.15'
testCompile 'junit:junit:4.11'
testCompile 'org.easymock:easymock:3.2'
testCompile 'org.easymock:easymockclassextension:3.2'
providedCompile 'javax.servlet:javax.servlet-api:3.0.1'
}
//===========================================================================
// Independent Gradle
//===========================================================================
task wrapper(type: Wrapper) {
description = "Generates gradlew[.bat] scripts"
gradleVersion = '1.6'
}