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:
parent
ed6c73fc16
commit
0a6d91ef8d
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/Java support/java-no-code-sample/target/
|
6
Java support/README.md
Normal file
6
Java support/README.md
Normal 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
|
13
Java support/java-no-code-sample/pom.xml
Normal file
13
Java support/java-no-code-sample/pom.xml
Normal 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>
|
@ -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:
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user