mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-06 08:01:59 +01:00
Update the way the fat jar is built and the pom distributed.
This commit is contained in:
parent
be5f3a6307
commit
196fab2d6f
|
|
@ -26,7 +26,12 @@
|
|||
<groupId>net.java.jinput</groupId>
|
||||
<artifactId>jinput</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.java.jinput</groupId>
|
||||
<artifactId>jinput</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<classifier>natives-all</classifier>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
|
|
|||
|
|
@ -80,17 +80,34 @@
|
|||
<goal>shade</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactSet>
|
||||
<filters>
|
||||
<filter>
|
||||
<artifact>net.java.jinput:osx-plugin:natives-osx</artifact>
|
||||
<excludes>
|
||||
<exclude>net.java.jinput:osx-plugin:jar:natives-osx</exclude>
|
||||
<exclude>net.java.jinput:linux-plugin:jar:natives-linux</exclude>
|
||||
<exclude>net.java.jinput:windows-plugin:jar:natives-windows</exclude>
|
||||
<exclude>net.java.jinput:wintab-plugin:jar:natives-wintab</exclude>
|
||||
<exclude>**/*</exclude>
|
||||
</excludes>
|
||||
</artifactSet>
|
||||
</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>
|
||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
|
|
|
|||
Loading…
Reference in a new issue