-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
68 lines (59 loc) · 2.24 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
<?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>
<parent>
<groupId>com.peergreen</groupId>
<artifactId>peergreen-pom</artifactId>
<version>3.1</version>
</parent>
<groupId>com.peergreen.webconsole</groupId>
<artifactId>web-console-bom</artifactId>
<version>1.0.0-M2-SNAPSHOT</version>
<name>Peergreen Web Console Bill Of Material</name>
<packaging>pom</packaging>
<!-- Company description -->
<organization>
<name>Peergreen</name>
<url>http://www.peergreen.com</url>
</organization>
<url>http://www.peergreen.com</url>
<licenses>
<license>
<name>Peergreen Software License 1.0</name>
<url>http://www.peergreen.com/Legal/Peergreen+Community+Binary+Code+License+Agreement</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Who worked on this project ? -->
<developers />
<scm>
<connection>scm:git:https://forge.peergreen.com/git/git/webconsole/web-console-bom.git</connection>
<developerConnection>scm:git:https://forge.peergreen.com/git/git/webconsole/web-console-bom.git</developerConnection>
<url>https://forge.peergreen.com/git/summary/?r=webconsole/web-console-bom.git</url>
<tag>HEAD</tag>
</scm>
<properties>
<webconsole.api.version>1.0.0-M2</webconsole.api.version>
<vaadin.version>7.1.6</vaadin.version>
<ipojo.version>1.10.1</ipojo.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-server</artifactId>
<version>${vaadin.version}</version>
</dependency>
<dependency>
<groupId>com.peergreen.webconsole</groupId>
<artifactId>web-console-api</artifactId>
<version>${webconsole.api.version}</version>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.ipojo.annotations</artifactId>
<version>${ipojo.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>