1
0
mirror of synced 2024-11-25 02:34:25 +01:00

Moved code to new repo

This commit is contained in:
Gary Sheppard 2018-02-09 08:56:00 -05:00
parent 0a6d91ef8d
commit df0b78b2a0
3 changed files with 1 additions and 30 deletions

View File

@ -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.

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.kelseyhightower.nocode</groupId>
<artifactId>java-no-code-sample</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>

View File

@ -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:
}
}