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