-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.tmpl
More file actions
45 lines (45 loc) · 1.43 KB
/
pom.tmpl
File metadata and controls
45 lines (45 loc) · 1.43 KB
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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.daveoxley.cbus</groupId>
<artifactId>cgateinterface</artifactId>
<packaging>jar</packaging>
<name>CGateInterface</name>
<version>@@VERSION@@</version>
<description>CGateInterface is a Java library for interfacing with C-Bus (CBus) home automation networks via Clipsal C-Gate (CGate).</description>
<url>http://github.com/cnery/cgateinterface/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://github.com/cnery/cgateinterface</url>
<connection>scm:git:git://github.com/cnery/cgateinterface.git</connection>
</scm>
<developers>
<developer>
<id>daveoxley</id>
<name>Dave Oxley</name>
<email>dave@daveoxley.co.uk</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.workplacesystems.utilsj</groupId>
<artifactId>utilsj</artifactId>
<version>1.1.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
<version>1.5.4</version>
</dependency>
</dependencies>
</project>