1
0
mirror of synced 2024-11-25 10:44:24 +01:00

Added Java support

- All the libraries needed to call No Code from a Java program
- A sample app that shows how it's done
This commit is contained in:
Gary Sheppard 2018-02-08 16:41:22 -05:00
parent ed6c73fc16
commit 0a6d91ef8d
4 changed files with 33 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/Java support/java-no-code-sample/target/

6
Java support/README.md Normal file
View File

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

View File

@ -0,0 +1,13 @@
<?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

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