-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
41 lines (41 loc) · 1.54 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.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>com.codeminders</groupId>
<artifactId>hidapi</artifactId>
<packaging>jar</packaging>
<name>Java API for working with Human Interface USB Devices (HID)</name>
<version>1.1</version>
<description>JNI wrapper around C/C++ HIDAPI library providing simple java API to work with devices such as USB gamepads, joysticks, keyboards etc.</description>
<url>http://code.google.com/p/javahidapi</url>
<licenses>
<license>
<name>New BSD License</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:hg:http://code.google.com/p/javahidapi</connection>
<developerConnection>scm:hg:https://code.google.com/p/javahidapi</developerConnection>
<url>http://code.google.com/p/javahidapi</url>
</scm>
<developers>
<developer>
<id>lord</id>
<name>Vadim Zaliva</name>
<email>[email protected]</email>
</developer>
<developer>
<id>Alexander Sova</id>
<name>Vadim Zaliva</name>
<email>[email protected]</email>
</developer>
<developer>
<id>dshmyga</id>
<name>Denis Shmyga</name>
<email>[email protected]</email>
</developer>
</developers>
</project>