Compare commits

...

2 Commits

Author SHA1 Message Date
Bradlee Speice 57ee63a274 Ew. Tabs. 2020-10-02 22:27:26 -04:00
Bradlee Speice 8bf33832db Use a plugins configuration block 2020-10-02 22:09:46 -04:00
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
apply plugin: 'java-library'
plugins {
id 'java-library'
}
group = "io.speice"
version = "1.0.0-SNAPSHOT"

View File

@ -15,7 +15,7 @@ public class Polyglot {
Method m = c.getDeclaredMethod("loadLibrary", String.class, String[].class);
m.invoke(null, "polyglot", null);
} catch (Exception e) {
}
}
}
public static native String getMessage();