This repository has been archived by the owner on Jan 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpom.xml
126 lines (110 loc) · 4.54 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
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
125
126
<!-- Copyright (C) 2010 Julien SMADJA <julien dot smadja at gmail dot com>
- Arnaud LEMAIRE <alemaire at norad dot fr> Licensed under the Apache License,
Version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
the specific language governing permissions and limitations under the License. -->
<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>fr.norad.visuwall</groupId>
<artifactId>visuwall</artifactId>
<version>0.3.6-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Visuwall</name>
<description>Web application showing build and quality states of Projects in a very visual Wall</description>
<parent>
<groupId>fr.norad.parent</groupId>
<artifactId>parent-java</artifactId>
<version>1.19</version>
</parent>
<modules>
<module>component/core</module>
<module>component/cli</module>
<module>component/web</module>
</modules>
<properties>
<bootstrap.version>1.0</bootstrap.version>
<spring.version>3.0.5.RELEASE</spring.version>
<spring-security.version>3.0.5.RELEASE</spring-security.version>
<jackson.version>1.8.5</jackson.version>
<jetty.version>6.1.26</jetty.version>
<guava.version>r09</guava.version>
<junit.version>4.8.2</junit.version>
<jersey.client.version>1.4</jersey.client.version>
<mockito.version>1.9.0-rc1</mockito.version>
<joda.time.version>1.6.2</joda.time.version>
</properties>
<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>
<comments/>
</license>
</licenses>
<issueManagement>
<system>github</system>
<url>https://github.com/awired/visuwall/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/n0rad/visuwall.git</connection>
<developerConnection>scm:git:git@github.com:n0rad/visuwall.git</developerConnection>
<url>http://github.com/n0rad/visuwall</url>
<tag>HEAD</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>fr.norad.visuwall</groupId>
<artifactId>visuwall-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>fr.norad.visuwall</groupId>
<artifactId>visuwall-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>fr.norad.visuwall</groupId>
<artifactId>visuwall-cli</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
<!-- plugin repos -->
<pluginRepositories>
<pluginRepository>
<id>maven2-repository.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</pluginRepository>
</pluginRepositories>
<!-- dependencies repos -->
<repositories>
<repository>
<id>java.net</id>
<name>Java.net Repository</name>
<url>http://download.java.net/maven/glassfish</url>
</repository>
<repository>
<id>maven2-repository.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
</repositories>
</project>