This repository has been archived by the owner on Jul 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
69 lines (61 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<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>com.github.pfichtner.revoltusbautomationjava</groupId>
<artifactId>parent</artifactId>
<version>0.0.4-SNAPSHOT</version>
<packaging>pom</packaging>
<repositories>
<repository>
<id>Eclipse Paho Repo</id>
<url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
</repository>
<repository>
<id>bintray</id>
<url>http://dl.bintray.com/andsel/maven/</url>
</repository>
<repository>
<id>central</id>
<url>http://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<developers>
<developer>
<id>pfichtner</id>
<name>Peter Fichtner</name>
<roles>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/pfichtner/revolt-usb-automation-java.git</url>
<connection>scm:git:https://github.com/pfichtner/revolt-usb-automation-java.git</connection>
<developerConnection>scm:git:https://[email protected]/pfichtner/revolt-usb-automation-java.git</developerConnection>
</scm>
<modules>
<module>library</module>
<module>cmdline</module>
<module>mqtt</module>
<module>swingui</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>2.32</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>