This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
forked from olivermay/geomajas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
147 lines (138 loc) · 4.14 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!--
~ This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
~
~ Copyright 2008-2013 Geosparc nv, http://www.geosparc.com/, Belgium.
~
~ The program is available in open source according to the GNU Affero
~ General Public License. All contributions in this program are covered
~ by the Geomajas Contributors License Agreement. For full licensing
~ details, see LICENSE.txt in the project root.
-->
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-all</artifactId>
<version>dummy-SNAPSHOT</version>
<packaging>pom</packaging>
<url>http://www.geomajas.org/</url>
<name>Grouping of all Geomajas modules</name>
<description>Grouping of all Geomajas modules</description>
<modules>
<module>project</module>
<module>backend</module>
<module>face</module>
<module>plugin</module>
<module>application</module>
<module>test</module>
</modules>
<profiles>
<profile>
<id>full-build</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>build-tools</module>
<module>documentation</module>
</modules>
</profile>
<profile>
<id>hudson</id>
<activation>
<property>
<name>hudson</name>
</property>
</activation>
</profile>
</profiles>
<repositories>
<repository>
<id>latlon-repo</id>
<url>http://repo.lat-lon/nexus/content/groups/public/</url>
</repository>
<repository>
<id>Geomajas-latest</id>
<name>Geomajas snapshot repository</name>
<url>http://apps.geomajas.org/nexus/content/groups/latest</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>latlon-releases</id>
<url>http://repo.lat-lon/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>latlon-snapshots</id>
<url>http://repo.lat-lon/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<pluginRepositories>
<pluginRepository>
<id>latlon-repo</id>
<url>http://repo.lat-lon/nexus/content/groups/public/</url>
</pluginRepository>
</pluginRepositories>
<scm>
<connection>scm:svn:https://svn.geomajas.org/majas/trunk</connection>
<developerConnection>scm:svn:https://svn.geomajas.org/majas/trunk</developerConnection>
<url>http://ci.geomajas.org/svn/repos/Geomajas/list/trunk</url>
</scm>
<organization>
<name>Geosparc</name>
<url>http://www.geosparc.com</url>
</organization>
<mailingLists>
<mailingList>
<name>DEV</name>
<post>mailto:majas-dev@geomajas.org</post>
<subscribe>http://lists.geomajas.org/mailman/listinfo/majas-dev</subscribe>
<unsubscribe>http://lists.geomajas.org/mailman/listinfo/majas-dev</unsubscribe>
<archive>http://lists.geomajas.org/pipermail/majas-dev/</archive>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>GNU Affero General Public License, Version 3</name>
<url>http://www.gnu.org/licenses/agpl-3.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>JIRA</system>
<url>http://jira.geomajas.org</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>http://ci.geomajas.org/jenkins/</url>
<notifiers>
<notifier>
<type>mail</type>
<sendOnError>true</sendOnError>
<sendOnFailure>true</sendOnFailure>
<sendOnSuccess>false</sendOnSuccess>
<sendOnWarning>true</sendOnWarning>
<configuration>
<address>geomajas-commit@lists.sourceforge.net</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
<developers>
<developer>
<id>dirkf</id>
<name>Dirk Frigne</name>
<email>dirk.frigne@geosparc.com</email>
<roles>
<role>product owner</role>
</roles>
</developer>
</developers>
</project>