Initial Dummy Checkin
authorMatt Corallo <git@bluematt.me>
Sat, 25 Jul 2020 22:24:14 +0000 (18:24 -0400)
committerA B <a@b.c>
Sat, 25 Jul 2020 22:24:14 +0000 (18:24 -0400)
pom.xml [new file with mode: 0644]
src/main/java/org/ldk/bindings.java [new file with mode: 0644]

diff --git a/pom.xml b/pom.xml
new file mode 100644 (file)
index 0000000..da5f5b0
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,15 @@
+<?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>org.example</groupId>
+    <artifactId>ldk-java</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <properties>
+        <maven.compiler.source>1.8</maven.compiler.source>
+        <maven.compiler.target>1.8</maven.compiler.target>
+    </properties>
+
+</project>
\ No newline at end of file
diff --git a/src/main/java/org/ldk/bindings.java b/src/main/java/org/ldk/bindings.java
new file mode 100644 (file)
index 0000000..ac88ed9
--- /dev/null
@@ -0,0 +1,8 @@
+package org.ldk;
+
+class bindings {
+    static {
+        System.loadLibrary("lightning");
+    }
+
+}