summaryrefslogtreecommitdiffstats
path: root/libmpv/java/pom.xml
diff options
context:
space:
mode:
authorJohn Hendrikx <hjohn@xs4all.nl>2019-06-21 00:45:25 +0200
committerwm4 <1387750+wm4@users.noreply.github.com>2019-09-13 13:53:03 +0200
commitb8b71201636430ecc375149d58164ed1987e30d5 (patch)
treea0f3d4fea5075d4b1355cb20265c5a920440da83 /libmpv/java/pom.xml
parentbbeb1a25c1b2982a11f24d3b017ae37a7921c738 (diff)
downloadmpv-examples-b8b71201636430ecc375149d58164ed1987e30d5.tar.bz2
mpv-examples-b8b71201636430ecc375149d58164ed1987e30d5.tar.xz
Add Java example using JavaFX and JNA
Diffstat (limited to 'libmpv/java/pom.xml')
-rw-r--r--libmpv/java/pom.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/libmpv/java/pom.xml b/libmpv/java/pom.xml
new file mode 100644
index 0000000..fd991d2
--- /dev/null
+++ b/libmpv/java/pom.xml
@@ -0,0 +1,41 @@
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>com.example.mpvtest</groupId>
+ <artifactId>mpvtest</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <dependencies>
+ <dependency>
+ <groupId>net.java.dev.jna</groupId>
+ <artifactId>jna-platform</artifactId>
+ <version>5.3.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.openjfx</groupId>
+ <artifactId>javafx-controls</artifactId>
+ <version>11.0.2</version>
+ </dependency>
+ </dependencies>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.1</version>
+ <configuration>
+ <source>11</source>
+ <target>11</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project> \ No newline at end of file