From 0a6d91ef8d32af69229c8beb36cf0c8a214c6642 Mon Sep 17 00:00:00 2001 From: Gary Sheppard Date: Thu, 8 Feb 2018 16:41:22 -0500 Subject: [PATCH] Added Java support - All the libraries needed to call No Code from a Java program - A sample app that shows how it's done --- .gitignore | 1 + Java support/README.md | 6 ++++++ Java support/java-no-code-sample/pom.xml | 13 +++++++++++++ .../kelseyhightower/nocode/JavaNoCodeSampleApp.java | 13 +++++++++++++ 4 files changed, 33 insertions(+) create mode 100644 .gitignore create mode 100644 Java support/README.md create mode 100644 Java support/java-no-code-sample/pom.xml create mode 100644 Java support/java-no-code-sample/src/main/java/com/github/kelseyhightower/nocode/JavaNoCodeSampleApp.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..398fd2d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/Java support/java-no-code-sample/target/ \ No newline at end of file diff --git a/Java support/README.md b/Java support/README.md new file mode 100644 index 0000000..cec9bfb --- /dev/null +++ b/Java support/README.md @@ -0,0 +1,6 @@ +# 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 diff --git a/Java support/java-no-code-sample/pom.xml b/Java support/java-no-code-sample/pom.xml new file mode 100644 index 0000000..6852d95 --- /dev/null +++ b/Java support/java-no-code-sample/pom.xml @@ -0,0 +1,13 @@ + + + 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 new file mode 100644 index 0000000..7704828 --- /dev/null +++ b/Java support/java-no-code-sample/src/main/java/com/github/kelseyhightower/nocode/JavaNoCodeSampleApp.java @@ -0,0 +1,13 @@ +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: + + } + +}