Skip to content

Commit

Permalink
Merge pull request #1 from umjammer/0.0.14v
Browse files Browse the repository at this point in the history
0.0.14v
  • Loading branch information
umjammer committed Jan 28, 2024
2 parents 4108140 + e791efc commit e9f1bd2
Show file tree
Hide file tree
Showing 16 changed files with 541 additions and 1,044 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

# Pure Java HID-API

yet another hid api for java with [jinput](https://github.com/umjammer/jinput) spi

## Install

* [maven](https://jitpack.io/#umjammer/purejavahidapi)
Expand All @@ -15,7 +17,8 @@

## TODO

* jinput spi
* ~~jinput spi~~
* ~~fix hid parser~~ use parser in [jinput](https://github.com/umjammer/jinput)

---

Expand Down
2 changes: 2 additions & 0 deletions local.properties.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mid=0xaaa
pid=0xbbb
23 changes: 14 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>purejavahidapi</groupId>
<artifactId>purejavahidapi</artifactId>
<version>0.0.13v</version>
<version>0.0.14v</version>

<packaging>jar</packaging>
<name>Pure Java HID-API</name>
Expand Down Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0</version>
<version>3.1.2</version>
<configuration>
<argLine>
-Djava.util.logging.config.file=${project.build.testOutputDirectory}/logging.properties
Expand Down Expand Up @@ -85,12 +85,24 @@
</dependencyManagement>

<dependencies>
<dependency>
<groupId>com.github.umjammer.jinput</groupId> <!-- net.java.jinput / com.github.umjammer.jinput -->
<artifactId>coreapi</artifactId>
<version>2.0.15v</version>
</dependency>

<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna-platform</artifactId>
<version>5.13.0</version>
</dependency>

<dependency>
<groupId>com.github.umjammer</groupId>
<artifactId>vavi-commons</artifactId>
<version>1.1.9</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand All @@ -101,12 +113,5 @@
<artifactId>junit-platform-commons</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.github.umjammer</groupId>
<artifactId>vavi-commons</artifactId>
<version>1.1.9</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
72 changes: 0 additions & 72 deletions src/main/java/purejavahidapi/hidparser/Collection.java

This file was deleted.

74 changes: 0 additions & 74 deletions src/main/java/purejavahidapi/hidparser/Field.java

This file was deleted.

Loading

0 comments on commit e9f1bd2

Please sign in to comment.