This repository has been archived by the owner on Jul 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
98 lines (81 loc) · 2.49 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<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>
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
<groupId>eu.stratuslab.cimi</groupId>
<artifactId>cimi</artifactId>
<version>14.06.1-SNAPSHOT</version>
<name>StratusLab CIMI (POM)</name>
<url>http://github.com/StratusLab/cimi</url>
<description>
This service provides a CIMI (Cloud Infrastructure Management
Interface) to the StratusLab cloud. It also acts as a service proxy,
allowing for a flexible, uniform authentication process for all of the
StratusLab services.
</description>
<packaging>pom</packaging>
<parent>
<groupId>eu.stratuslab</groupId>
<artifactId>distribution</artifactId>
<version>14.06.1-SNAPSHOT</version>
</parent>
<modules>
<module>jar</module>
</modules>
<profiles>
<profile>
<id>build-rpm</id>
<activation>
<file>
<exists>/usr/bin/rpmbuild</exists>
</file>
</activation>
<modules>
<module>rpm</module>
</modules>
</profile>
</profiles>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/StratusLab/cimi/issues</url>
</issueManagement>
<scm>
<connection>scm:git:ssh://git@github.com/StratusLab/cimi.git</connection>
<developerConnection>scm:git:ssh://git@github.com/StratusLab/cimi.git</developerConnection>
<tag>HEAD</tag>
</scm>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>POMReleases</id>
<name>POM Releases</name>
<url>http://repo.stratuslab.eu:8081/content/repositories/centos-6.2-releases</url>
</repository>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>POMSnapshots</id>
<name>POM Snapshots</name>
<url>http://repo.stratuslab.eu:8081/content/repositories/centos-6.2-snapshots</url>
</repository>
<repository>
<id>couchbase</id>
<name>Couchbase Repository</name>
<layout>default</layout>
<url>http://files.couchbase.com/maven2/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>