Skip to content

Commit 26a54ae

Browse files
author
Rachael Ellen
committed
Merge branch 'master' into 100.10.0
2 parents fda9bd7 + effc0dc commit 26a54ae

File tree

274 files changed

+5237
-1512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

274 files changed

+5237
-1512
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# ArcGIS Runtime Java SDK Samples
22

3-
[ ![Download](https://api.bintray.com/packages/esri/arcgis/arcgis-java/images/download.svg) ](https://bintray.com/esri/arcgis/arcgis-java/_latestVersion) ![Gradle build](https://github.com/Esri/arcgis-runtime-samples-java/workflows/Java%20CI%20with%20Gradle/badge.svg)
4-
53
This repo contains a set of sample projects demonstrating how to accomplish various mapping and GIS tasks with the ArcGIS Runtime SDK for Java.
64

75
Browse the category directories to explore the samples. Each sample is an individual [Gradle](https://docs.gradle.org/current/userguide/userguide.html) project that can be run standalone. The Gradle buildscripts have tasks for running the application, building a jar, and distributing the app as a zip.

analysis/analyze-hotspots/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -64,9 +64,9 @@ jar {
6464
task productionZip(type: Zip) {
6565
group = 'distribution'
6666
from copyNatives
67-
from jar.destinationDir
67+
from jar.destinationDirectory
6868
into (project.name)
69-
baseName = project.name
69+
archiveBaseName = project.name
7070
}
7171

7272
wrapper {

analysis/distance-measurement-analysis/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -64,9 +64,9 @@ jar {
6464
task productionZip(type: Zip) {
6565
group = 'distribution'
6666
from copyNatives
67-
from jar.destinationDir
67+
from jar.destinationDirectory
6868
into (project.name)
69-
baseName = project.name
69+
archiveBaseName = project.name
7070
}
7171

7272
wrapper {

analysis/line-of-sight-geoelement/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -67,9 +67,9 @@ task productionZip(type: Zip) {
6767
into "samples-data"
6868
}
6969
from copyNatives
70-
from jar.destinationDir
70+
from jar.destinationDirectory
7171
into (project.name)
72-
baseName = project.name
72+
archiveBaseName = project.name
7373
}
7474

7575
wrapper {

analysis/line-of-sight-location/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -64,9 +64,9 @@ jar {
6464
task productionZip(type: Zip) {
6565
group = 'distribution'
6666
from copyNatives
67-
from jar.destinationDir
67+
from jar.destinationDirectory
6868
into (project.name)
69-
baseName = project.name
69+
archiveBaseName = project.name
7070
}
7171

7272
wrapper {

analysis/viewshed-camera/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -64,9 +64,9 @@ jar {
6464
task productionZip(type: Zip) {
6565
group = 'distribution'
6666
from copyNatives
67-
from jar.destinationDir
67+
from jar.destinationDirectory
6868
into (project.name)
69-
baseName = project.name
69+
archiveBaseName = project.name
7070
}
7171

7272
wrapper {

analysis/viewshed-geoelement/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -67,9 +67,9 @@ task productionZip(type: Zip) {
6767
into "samples-data"
6868
}
6969
from copyNatives
70-
from jar.destinationDir
70+
from jar.destinationDirectory
7171
into (project.name)
72-
baseName = project.name
72+
archiveBaseName = project.name
7373
}
7474

7575
wrapper {

analysis/viewshed-geoprocessing/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -64,9 +64,9 @@ jar {
6464
task productionZip(type: Zip) {
6565
group = 'distribution'
6666
from copyNatives
67-
from jar.destinationDir
67+
from jar.destinationDirectory
6868
into (project.name)
69-
baseName = project.name
69+
archiveBaseName = project.name
7070
}
7171

7272
wrapper {
-8.05 KB
Loading

analysis/viewshed-location/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'application'
3-
id 'org.openjfx.javafxplugin' version '0.0.5'
3+
id 'org.openjfx.javafxplugin' version '0.0.8'
44
}
55

66
group = 'com.esri.samples'
@@ -19,10 +19,10 @@ compileJava.options.encoding = 'UTF-8'
1919
repositories {
2020
jcenter()
2121
maven {
22-
url 'https://esri.bintray.com/arcgis'
22+
url 'https://esri.jfrog.io/artifactory/arcgis'
2323
}
2424
maven {
25-
url 'http://olympus.esri.com/artifactory/arcgisruntime-repo'
25+
url 'https://olympus.esri.com/artifactory/arcgisruntime-repo'
2626
}
2727
}
2828

@@ -31,7 +31,7 @@ configurations {
3131
}
3232

3333
dependencies {
34-
compile "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
34+
implementation "com.esri.arcgisruntime:arcgis-java:$arcgisVersion"
3535
natives "com.esri.arcgisruntime:arcgis-java-jnilibs:$arcgisVersion"
3636
natives "com.esri.arcgisruntime:arcgis-java-resources:$arcgisVersion"
3737
}
@@ -64,9 +64,9 @@ jar {
6464
task productionZip(type: Zip) {
6565
group = 'distribution'
6666
from copyNatives
67-
from jar.destinationDir
67+
from jar.destinationDirectory
6868
into (project.name)
69-
baseName = project.name
69+
archiveBaseName = project.name
7070
}
7171

7272
wrapper {

0 commit comments

Comments
 (0)