-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (41 loc) · 1.7 KB
/
Copy pathbuild.gradle
File metadata and controls
51 lines (41 loc) · 1.7 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
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/4.9/userguide/tutorial_java_projects.html
*/
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building an application
id 'application'
id 'eclipse'
id 'war'
}
ext {
slf4jVersion = '1.7.21'
}
// Define the main class for the application
mainClassName = 'App'
dependencies {
//twilio sdk
providedCompile group: 'javax', name: 'javaee-api', version:'7.0'
compile group: "com.twilio.sdk", name: "twilio", version: "7.22.0"
compile group: "com.ibm.watson.developer_cloud", name: "assistant", version: "6.4.0"
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.12.0'
compile group: "com.google.maps", name: "google-maps-services", version: "0.2.8"
compile group: "com.mapbox.mapboxsdk", name: "mapbox-sdk-services", version: "3.3.0"
//compile "org.slf4j:slf4j-nop:1.7.25"
compile 'org.apache.httpcomponents:httpclient:4.5.6'
// Use JUnit test framework
testCompile 'junit:junit:4.12'
['slf4j-api','slf4j-jdk14'].each{compile "org.slf4j:$it:$slf4jVersion"}
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
maven { url = "http://repo.maven.apache.org/maven2" }
maven { url = "http://oss.sonatype.org/content/repositories/snapshots/" }
}