-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpom.xml
51 lines (43 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>keybridge.usb</groupId>
<artifactId>javax-usb3</artifactId>
<version>1.4.0</version>
<packaging>jar</packaging>
<name>javax-usb3</name>
<description>Implementation of the Java Specification Request 80 (JSR80)
javax.usb API, the OS-independent Reference Implementation,
and JNI/JNA OS-specific connects the common RI.
v1.0.0 - first release based on usb4java v1.0.2
v1.2.0 - rewrite using maven build
v1.3.0 - rewrite and consolidate jsr-80, the ibm-ri, and usb4java into a single implementation library
v1.3.1 - update documentation and refresh license declarations
v1.3.2 - more consistent use of interfaces, rename UsbHostManager to USB utility
v1.4.0 - updates to better support embedded and OSGI
</description>
<organization>
<name>Key Bridge</name>
<url>http://keybridge.ch</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<doclint>none</doclint>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>${repository.name}</id>
<url>${repository.url}</url>
</repository>
</distributionManagement>
</project>