mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-06 08:01:59 +01:00
48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_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>
|
||
|
|
<artifactId>linux-plugin</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>JInput - Linux Plugin</name>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>net.java.jinput</groupId>
|
||
|
|
<artifactId>plugins</artifactId>
|
||
|
|
<version>2.0.8-SNAPSHOT</version>
|
||
|
|
<relativePath>../</relativePath>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>net.java.jinput</groupId>
|
||
|
|
<artifactId>coreapi</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<phase>compile</phase>
|
||
|
|
<configuration>
|
||
|
|
<target>
|
||
|
|
<ant dir="." target="compileNativeJinputLib"/>
|
||
|
|
</target>
|
||
|
|
</configuration>
|
||
|
|
<goals>
|
||
|
|
<goal>run</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|