forked from Esri/arcgis-maps-sdk-java-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (21 loc) · 831 Bytes
/
build.gradle
File metadata and controls
24 lines (21 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'application'
// In this section you declare where to find the dependencies of your project
repositories {
jcenter()
}
// configure the main class (entry point) you want to run here
mainClassName = 'com.esri.sampleviewer.samples.map.SetInitialMapLocation'
// In this section you declare the dependencies
dependencies {
// local binary dependency
compile fileTree(dir: 'libs', include: ['*.jar'])
// arcgis-java dependencies
compile 'com.google.code.gson:gson:2.3.1'
compile 'org.apache.httpcomponents:httpclient:4.3.3'
compile 'org.apache.httpcomponents:httpcore:4.3.3'
compile 'commons-codec:commons-codec:1.6'
compile 'commons-logging:commons-logging:1.1.3'
compile 'org.controlsfx:controlsfx:8.40.9'
}