From df0b78b2a0060e65ef15fdc06f48b86aa9c1221d Mon Sep 17 00:00:00 2001 From: Gary Sheppard Date: Fri, 9 Feb 2018 08:56:00 -0500 Subject: [PATCH] Moved code to new repo --- Java support/README.md | 5 +---- Java support/java-no-code-sample/pom.xml | 13 ------------- .../kelseyhightower/nocode/JavaNoCodeSampleApp.java | 13 ------------- 3 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 Java support/java-no-code-sample/pom.xml delete mode 100644 Java support/java-no-code-sample/src/main/java/com/github/kelseyhightower/nocode/JavaNoCodeSampleApp.java diff --git a/Java support/README.md b/Java support/README.md index cec9bfb..59369cc 100644 --- a/Java support/README.md +++ b/Java support/README.md @@ -1,6 +1,3 @@ # Integrating Java with No Code -It's very simple to call No Code from Java. This directory contains the following: - -- All the libraries needed to access No Code from Java -- A sample Java app that demonstrates how these libraries are used +It's very simple to call No Code from Java. Bindings and sample code are available at https://github.com/garys-esri/java-nocode-bindings. diff --git a/Java support/java-no-code-sample/pom.xml b/Java support/java-no-code-sample/pom.xml deleted file mode 100644 index 6852d95..0000000 --- a/Java support/java-no-code-sample/pom.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - 4.0.0 - com.github.kelseyhightower.nocode - java-no-code-sample - 1.0.0 - jar - - UTF-8 - 1.8 - 1.8 - - \ No newline at end of file diff --git a/Java support/java-no-code-sample/src/main/java/com/github/kelseyhightower/nocode/JavaNoCodeSampleApp.java b/Java support/java-no-code-sample/src/main/java/com/github/kelseyhightower/nocode/JavaNoCodeSampleApp.java deleted file mode 100644 index 7704828..0000000 --- a/Java support/java-no-code-sample/src/main/java/com/github/kelseyhightower/nocode/JavaNoCodeSampleApp.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.github.kelseyhightower.nocode; - -/** - * A sample app that shows how to integrate Java with No Code. - */ -public class JavaNoCodeSampleApp { - - public static void main(String[] args) { - // Here's where you call the No Code libraries: - - } - -}