mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-03-10 07:23:50 +01:00
Linux native jar file building.
This commit is contained in:
parent
b2fd759065
commit
4517180482
|
|
@ -43,6 +43,24 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>jar</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<classesDirectory>${project.build.directory}/natives</classesDirectory>
|
||||
<classifier>natives-linux</classifier>
|
||||
<includes>
|
||||
<include>*.so</include>
|
||||
</includes>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Loading…
Reference in a new issue