mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2026-01-20 15:40:18 +01:00
Website updates
This commit is contained in:
parent
341db62139
commit
be5f3a6307
|
|
@ -40,6 +40,8 @@ Include dependency in your project:
|
|||
<artifactId>maven-nativedependencies-plugin</artifactId>
|
||||
</plugin>
|
||||
```
|
||||
|
||||
A full pom might look like [this one](https://github.com/jinput/jinput/blob/master/examples/example.pom.xml)
|
||||
|
||||
|
||||
2. Build from sources - Experts only
|
||||
|
|
|
|||
50
examples/example.pom.xml
Normal file
50
examples/example.pom.xml
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
<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>
|
||||
<groupId>net.java.jinput</groupId>
|
||||
<artifactId>examples-pom</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>JInput - example pom</name>
|
||||
<version>2.0.9-SNAPSHOT</version>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>central-snapshots</id>
|
||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||
<releases><enabled>false</enabled></releases>
|
||||
<snapshots><enabled>true</enabled></snapshots>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>net.java.jinput</groupId>
|
||||
<artifactId>jinput</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>pom</type>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>com.googlecode.mavennatives</groupId>
|
||||
<artifactId>maven-nativedependencies-plugin</artifactId>
|
||||
<version>0.0.7</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>unpacknatives</id>
|
||||
<goals>
|
||||
<goal>copy</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
Loading…
Reference in a new issue