usb4java/pom.xml

359 lines
11 KiB
XML
Raw Permalink Normal View History

2011-01-21 14:47:11 -08:00
<?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/maven-v4_0_0.xsd">
2011-01-21 14:47:11 -08:00
<modelVersion>4.0.0</modelVersion>
2018-10-10 14:11:21 -07:00
<groupId>org.usb4java</groupId>
<artifactId>usb4java</artifactId>
<packaging>jar</packaging>
2011-01-21 14:47:11 -08:00
<name>usb4java</name>
<version>1.3.1-SNAPSHOT</version>
<url>http://usb4java.org/</url>
2011-01-21 14:47:11 -08:00
<description>
2014-03-19 13:19:46 -07:00
USB library for Java based on libusb and implementing javax-usb (JSR-80).
2011-01-21 14:47:11 -08:00
</description>
<inceptionYear>2011</inceptionYear>
<organization>
<name>usb4java Team</name>
<url>http://usb4java.org/</url>
2011-01-21 14:47:11 -08:00
</organization>
2018-10-10 14:11:21 -07:00
2011-01-21 14:47:11 -08:00
<licenses>
<license>
2015-05-25 09:20:06 -07:00
<name>MIT</name>
2013-04-13 04:37:00 -07:00
<url>LICENSE.md</url>
2011-01-21 14:47:11 -08:00
<distribution>repo</distribution>
</license>
</licenses>
2018-10-10 14:11:21 -07:00
2013-04-10 14:21:11 -07:00
<mailingLists>
<mailingList>
<name>Discussions</name>
2013-04-10 14:27:06 -07:00
<subscribe>usb4java+subscribe@googlegroups.com</subscribe>
<unsubscribe>usb4java+unsubscribe@googlegroups.com</unsubscribe>
2013-04-10 14:21:11 -07:00
<post>usb4java@googlegroups.com</post>
<archive>http://groups.google.com/group/usb4java</archive>
2018-10-10 14:11:21 -07:00
</mailingList>
</mailingLists>
2011-01-21 14:47:11 -08:00
<developers>
<developer>
<id>kayahr</id>
2011-01-21 14:47:11 -08:00
<name>Klaus Reimer</name>
<email>k@ailis.de</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
<url>http://www.ailis.de/~k/</url>
2018-10-10 14:11:21 -07:00
</developer>
<developer>
<id>llongi</id>
<name>Luca Longinotti</name>
<email>l@longi.li</email>
<roles>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
<url>http://l.longi.li/</url>
2018-10-10 14:11:21 -07:00
</developer>
2011-01-21 14:47:11 -08:00
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2018-10-21 14:36:04 -07:00
<libusb4java.version>1.3.1-SNAPSHOT</libusb4java.version>
</properties>
2018-10-10 14:11:21 -07:00
<scm>
<connection>scm:git:git://github.com/usb4java/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://git@github.com/usb4java/${project.artifactId}.git</developerConnection>
<url>http://github.com/usb4java/${project.artifactId}</url>
<tag>HEAD</tag>
</scm>
2018-10-10 14:11:21 -07:00
<issueManagement>
<system>GitHub</system>
<url>https://github.com/usb4java/${project.artifactId}/issues</url>
</issueManagement>
2018-10-10 14:11:21 -07:00
2014-03-08 01:39:35 -08:00
<prerequisites>
2018-10-07 01:44:01 -07:00
<maven>3.0.5</maven>
2014-03-08 01:39:35 -08:00
</prerequisites>
2018-10-10 14:11:21 -07:00
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
2018-10-07 01:44:01 -07:00
<version>3.0.0</version>
<configuration>
<dependencyDetailEnabled>false</dependencyDetailEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>summary</report>
2018-10-07 02:04:12 -07:00
<report>team</report>
<report>mailing-lists</report>
<report>issue-management</report>
<report>scm</report>
2018-10-07 02:04:12 -07:00
<report>licenses</report>
<report>dependencies</report>
<report>plugins</report>
<report>plugin-management</report>
2018-10-10 14:11:21 -07:00
</reports>
</reportSet>
</reportSets>
</plugin>
2018-10-10 14:11:21 -07:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
2018-10-07 01:44:01 -07:00
<version>2.12.1</version>
2018-10-07 02:04:12 -07:00
<configuration>
<teamlist>team.html</teamlist>
</configuration>
2013-02-15 10:45:09 -08:00
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
2013-02-15 11:42:31 -08:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
2018-10-07 01:44:01 -07:00
<version>3.0.1</version>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
2013-02-15 11:42:31 -08:00
</plugin>
2018-10-10 14:11:21 -07:00
</plugins>
</reporting>
2011-01-23 09:12:06 -08:00
<build>
<plugins>
2018-10-10 14:11:21 -07:00
<!-- Use Java 6 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2018-10-07 01:44:01 -07:00
<version>3.8.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
2018-10-10 14:11:21 -07:00
<!-- Build the web site -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2018-10-10 14:11:21 -07:00
<artifactId>maven-site-plugin</artifactId>
2018-10-07 01:44:01 -07:00
<version>3.7.1</version>
<configuration>
<chmod>false</chmod>
<locales>en</locales>
<inputEncoding>${project.build.sourceEncoding}</inputEncoding>
<outputEncoding>${project.build.sourceEncoding}</outputEncoding>
</configuration>
</plugin>
2018-10-10 14:11:21 -07:00
<!-- Build binary artifacts for Unix, Mac OS X and Windows -->
2018-10-10 14:11:21 -07:00
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
2018-10-07 01:44:01 -07:00
<version>3.1.0</version>
<configuration>
2018-10-21 08:35:15 -07:00
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/tarball.xml</descriptor>
<descriptor>src/main/assembly/zip.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>package-assembly</id>
<phase>package</phase>
<goals>
2018-10-07 01:44:01 -07:00
<goal>single</goal>
</goals>
</execution>
2018-10-10 14:11:21 -07:00
</executions>
</plugin>
2018-10-07 02:59:42 -07:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2018-10-10 14:11:21 -07:00
<artifactId>maven-jar-plugin</artifactId>
2018-10-07 02:59:42 -07:00
<version>3.1.0</version>
</plugin>
2018-10-21 09:09:57 -07:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
</plugin>
2018-10-21 09:28:08 -07:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
</plugin>
</plugins>
2018-10-10 14:11:21 -07:00
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
2018-10-21 09:09:57 -07:00
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2018-10-10 14:11:21 -07:00
<repositories>
2018-10-21 09:02:55 -07:00
<repository>
<id>sonatype-releases</id>
<name>Sonatype Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
2011-01-21 14:47:11 -08:00
<repository>
2018-10-21 08:35:15 -07:00
<id>sonatype-snapshots</id>
<name>Sonatype Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
2018-10-21 09:02:55 -07:00
<releases><enabled>false</enabled></releases>
2018-10-21 08:35:15 -07:00
<snapshots><enabled>true</enabled></snapshots>
2011-01-21 14:47:11 -08:00
</repository>
</repositories>
2011-01-21 14:47:11 -08:00
<distributionManagement>
<site>
<id>project-website</id>
<url>file://${project.basedir}/../${project.artifactId}-site/</url>
2011-01-21 14:47:11 -08:00
</site>
<repository>
<id>sonatype-staging</id>
<name>Sonatype Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sonatype-snapshots</id>
<name>Sonatype Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
2018-10-10 14:11:21 -07:00
</snapshotRepository>
2011-01-21 14:47:11 -08:00
</distributionManagement>
2018-10-10 14:11:21 -07:00
<dependencies>
2013-02-23 17:03:49 -08:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2015-04-14 02:28:32 -07:00
<version>4.12</version>
2013-02-23 17:03:49 -08:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.usb4java</groupId>
<artifactId>libusb4java</artifactId>
2014-02-23 23:25:54 -08:00
<version>${libusb4java.version}</version>
<classifier>linux-x86</classifier>
2018-10-10 14:11:21 -07:00
</dependency>
2014-02-23 23:25:54 -08:00
<dependency>
<groupId>org.usb4java</groupId>
<artifactId>libusb4java</artifactId>
<version>${libusb4java.version}</version>
2018-10-10 14:11:21 -07:00
<classifier>linux-x86-64</classifier>
</dependency>
2014-02-26 01:19:16 -08:00
<dependency>
<groupId>org.usb4java</groupId>
<artifactId>libusb4java</artifactId>
<version>${libusb4java.version}</version>
2018-10-10 14:11:21 -07:00
<classifier>win32-x86</classifier>
</dependency>
2014-02-23 23:25:54 -08:00
<dependency>
<groupId>org.usb4java</groupId>
<artifactId>libusb4java</artifactId>
<version>${libusb4java.version}</version>
2018-10-10 14:11:21 -07:00
<classifier>win32-x86-64</classifier>
</dependency>
2014-02-23 23:25:54 -08:00
<dependency>
<groupId>org.usb4java</groupId>
<artifactId>libusb4java</artifactId>
<version>${libusb4java.version}</version>
2018-10-10 14:11:21 -07:00
<classifier>darwin-x86-64</classifier>
</dependency>
2014-02-23 23:25:54 -08:00
<dependency>
<groupId>org.usb4java</groupId>
<artifactId>libusb4java</artifactId>
<version>${libusb4java.version}</version>
2018-10-10 14:11:21 -07:00
<classifier>linux-arm</classifier>
</dependency>
2014-02-23 23:25:54 -08:00
<dependency>
<groupId>org.usb4java</groupId>
<artifactId>libusb4java</artifactId>
<version>${libusb4java.version}</version>
2018-10-10 14:11:21 -07:00
<classifier>linux-aarch64</classifier>
</dependency>
2013-04-12 08:27:20 -07:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
2018-10-07 01:44:01 -07:00
<version>3.8.1</version>
</dependency>
</dependencies>
2018-10-10 14:11:21 -07:00
2011-01-21 14:47:11 -08:00
</project>