|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>de.ailis.usb4java</groupId> |
| 6 | + <artifactId>usb4java-examples</artifactId> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <name>usb4java-exampels</name> |
| 9 | + <version>1.0.0-SNAPSHOT</version> |
| 10 | + <url>http://github.com/kayahr/usb4java-examples/</url> |
| 11 | + <description> |
| 12 | + usb4java examples |
| 13 | + </description> |
| 14 | + <inceptionYear>2013</inceptionYear> |
| 15 | + <organization> |
| 16 | + <name>Klaus Reimer</name> |
| 17 | + <url>http://www.ailis.de/~k/</url> |
| 18 | + </organization> |
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>MIT</name> |
| 23 | + <url>LICENSE.txt</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + </license> |
| 26 | + </licenses> |
| 27 | + |
| 28 | + <mailingLists> |
| 29 | + <mailingList> |
| 30 | + <name>Discussions</name> |
| 31 | + < subscribe> [email protected]</ subscribe> |
| 32 | + < unsubscribe> [email protected]</ unsubscribe> |
| 33 | + |
| 34 | + <archive>http://groups.google.com/group/usb4java</archive> |
| 35 | + </mailingList> |
| 36 | + </mailingLists> |
| 37 | + |
| 38 | + <developers> |
| 39 | + <developer> |
| 40 | + <id>kayahr</id> |
| 41 | + <name>Klaus Reimer</name> |
| 42 | + |
| 43 | + <roles> |
| 44 | + <role>Developer</role> |
| 45 | + </roles> |
| 46 | + <timezone>+1</timezone> |
| 47 | + <url>http://www.ailis.de/~k/</url> |
| 48 | + </developer> |
| 49 | + </developers> |
| 50 | + |
| 51 | + <properties> |
| 52 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 53 | + </properties> |
| 54 | + |
| 55 | + <scm> |
| 56 | + <connection>scm:git:git://github.com/kayahr/${project.artifactId}.git</connection> |
| 57 | + < developerConnection>scm:git:ssh:// [email protected]/kayahr/ ${project.artifactId}.git</ developerConnection> |
| 58 | + <url>http://github.com/kayahr/${project.artifactId}</url> |
| 59 | + </scm> |
| 60 | + |
| 61 | + <issueManagement> |
| 62 | + <system>GitHub</system> |
| 63 | + <url>https://github.com/kayahr/${project.artifactId}/issues</url> |
| 64 | + </issueManagement> |
| 65 | + |
| 66 | + <ciManagement> |
| 67 | + <system>Travis CI</system> |
| 68 | + <url>https://travis-ci.org/kayahr/${project.artifactId}/</url> |
| 69 | + </ciManagement> |
| 70 | + |
| 71 | + <build> |
| 72 | + <plugins> |
| 73 | + |
| 74 | + <!-- Use Java 6 --> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-compiler-plugin</artifactId> |
| 78 | + <version>3.0</version> |
| 79 | + <configuration> |
| 80 | + <source>1.6</source> |
| 81 | + <target>1.6</target> |
| 82 | + <encoding>${project.build.sourceEncoding}</encoding> |
| 83 | + </configuration> |
| 84 | + </plugin> |
| 85 | + |
| 86 | + </plugins> |
| 87 | + </build> |
| 88 | + |
| 89 | + <repositories> |
| 90 | + <repository> |
| 91 | + <id>ailis-releases</id> |
| 92 | + <name>Ailis Maven Releases</name> |
| 93 | + <url>http://nexus.ailis.de/content/groups/public/</url> |
| 94 | + <releases><enabled>true</enabled></releases> |
| 95 | + <snapshots><enabled>false</enabled></snapshots> |
| 96 | + </repository> |
| 97 | + <repository> |
| 98 | + <id>ailis-snapshots</id> |
| 99 | + <name>Ailis Maven Snapshots</name> |
| 100 | + <url>http://nexus.ailis.de/content/groups/public-snapshots/</url> |
| 101 | + <releases><enabled>false</enabled></releases> |
| 102 | + <snapshots><enabled>true</enabled></snapshots> |
| 103 | + </repository> |
| 104 | + </repositories> |
| 105 | + |
| 106 | + <distributionManagement> |
| 107 | + <repository> |
| 108 | + <id>ailis-releases</id> |
| 109 | + <name>Ailis Maven Releases</name> |
| 110 | + <url>http://nexus.ailis.de/content/repositories/releases</url> |
| 111 | + </repository> |
| 112 | + <snapshotRepository> |
| 113 | + <id>ailis-snapshots</id> |
| 114 | + <name>Ailis Maven Snapshots</name> |
| 115 | + <url>http://nexus.ailis.de/content/repositories/snapshots</url> |
| 116 | + </snapshotRepository> |
| 117 | + </distributionManagement> |
| 118 | + |
| 119 | + <dependencies> |
| 120 | + <dependency> |
| 121 | + <groupId>junit</groupId> |
| 122 | + <artifactId>junit</artifactId> |
| 123 | + <version>4.11</version> |
| 124 | + <scope>test</scope> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>de.ailis.usb4java</groupId> |
| 128 | + <artifactId>usb4java</artifactId> |
| 129 | + <version>1.0.0-SNAPSHOT</version> |
| 130 | + </dependency> |
| 131 | + </dependencies> |
| 132 | + |
| 133 | +</project> |
0 commit comments