This repository was archived by the owner on Jul 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
124 lines (107 loc) · 3.53 KB
/
Copy pathpom.xml
File metadata and controls
124 lines (107 loc) · 3.53 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<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>eu.stratuslab.marketplace</groupId>
<artifactId>marketplace</artifactId>
<version>14.06.1-SNAPSHOT</version>
<name>Marketplace (POM)</name>
<url>http://hudson.stratuslab.eu/marketplace</url>
<description>
The Marketplace contains signed descriptions of available (or formally
available) machine and disk images. This project contains the code
for the Marketplace server as well as various utilities related to the
metadata.
</description>
<packaging>pom</packaging>
<parent>
<groupId>eu.stratuslab</groupId>
<artifactId>distribution</artifactId>
<version>14.06.1-SNAPSHOT</version>
</parent>
<modules>
<module>server</module>
</modules>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/StratusLab/marketplace/issues</url>
</issueManagement>
<scm>
<connection>scm:git:ssh://git@github.com/StratusLab/marketplace.git</connection>
<developerConnection>scm:git:ssh://git@github.com/StratusLab/marketplace.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 Maven Repository</name>
<url>http://files.couchbase.com/maven2/</url>
</repository>
<repository>
<id>jgit-repository</id>
<url>https://repo.eclipse.org/content/groups/releases/</url>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>eu.stratuslab.authn</groupId>
<artifactId>authn-ssl</artifactId>
<version>14.06.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>eu.stratuslab.authn</groupId>
<artifactId>authn-login-module</artifactId>
<version>14.06.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>eu.stratuslab.authn</groupId>
<artifactId>authn-one-proxy-war</artifactId>
<version>14.06.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>eu.stratuslab.metadata</groupId>
<artifactId>metadata</artifactId>
<version>14.06.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>eu.stratuslab.metadata</groupId>
<artifactId>metadata-fatjar</artifactId>
<version>14.06.1-SNAPSHOT</version>
<type>jar</type>
<classifier>jar-with-dependencies</classifier>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>