mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-06 08:01:59 +01:00
167 lines
7.5 KiB
XML
167 lines
7.5 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>jinput</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>JInput - Uber jar</name>
|
|
|
|
<parent>
|
|
<groupId>net.java.jinput</groupId>
|
|
<artifactId>jinput-parent</artifactId>
|
|
<version>2.0.9-SNAPSHOT</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>coreapi</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>windows-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>natives-windows</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>osx-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>natives-osx</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>wintab-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>natives-wintab</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>linux-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
<classifier>natives-linux</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>windows-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>osx-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>wintab-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>linux-plugin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.googlecode.mavennatives</groupId>
|
|
<artifactId>maven-nativedependencies-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>default</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<filters>
|
|
<filter>
|
|
<artifact>net.java.jinput:osx-plugin:natives-osx</artifact>
|
|
<excludes>
|
|
<exclude>**/*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>net.java.jinput:linux-plugin:natives-linux</artifact>
|
|
<excludes>
|
|
<exclude>**/*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>net.java.jinput:windows-plugin:natives-windows</artifact>
|
|
<excludes>
|
|
<exclude>**/*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>net.java.jinput:wintab-plugin:natives-wintab</artifact>
|
|
<excludes>
|
|
<exclude>**/*</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<createSourcesJar>true</createSourcesJar>
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>natives</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<filters>
|
|
<filter>
|
|
<artifact>net.java.jinput:osx-plugin</artifact>
|
|
<includes>
|
|
<include>**/*.jnilib</include>
|
|
<include>META-INF/**/*</include>
|
|
</includes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>net.java.jinput:linux-plugin</artifact>
|
|
<includes>
|
|
<include>**/*.so</include>
|
|
<include>META-INF/**/*</include>
|
|
</includes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>net.java.jinput:windows-plugin</artifact>
|
|
<includes>
|
|
<include>**/*.dll</include>
|
|
<include>META-INF/**/*</include>
|
|
</includes>
|
|
</filter>
|
|
<filter>
|
|
<artifact>net.java.jinput:wintab-plugin</artifact>
|
|
<includes>
|
|
<include>**/*.dll</include>
|
|
<include>META-INF/**/*</include>
|
|
</includes>
|
|
</filter>
|
|
</filters>
|
|
<artifactSet>
|
|
<excludes>
|
|
<exclude>net.java.jutils:jutils</exclude>
|
|
<exclude>net.java.jinput:jinput</exclude>
|
|
<exclude>net.java.jinput:coreapi</exclude>
|
|
</excludes>
|
|
</artifactSet>
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
<shadedClassifierName>natives-all</shadedClassifierName>
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |