]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
2fa68a7d598c02fe34ea305c91af0fb0d57e7b8c
[gpl/argeo-slc.git] / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons</groupId>
5 <artifactId>argeo-commons</artifactId>
6 <version>2.1.41-SNAPSHOT</version>
7 </parent>
8 <groupId>org.argeo.slc</groupId>
9 <artifactId>argeo-slc</artifactId>
10 <packaging>pom</packaging>
11 <name>Argeo SLC</name>
12 <version>2.1.4-SNAPSHOT</version>
13 <properties>
14 <developmentCycle.slc>2.1</developmentCycle.slc>
15 <developmentCycle.startDate>2015-02-12</developmentCycle.startDate>
16 <version.slc>2.1.4-SNAPSHOT</version.slc>
17 </properties>
18 <modules>
19 <!-- Runtime -->
20 <module>org.argeo.slc.api</module>
21 <module>org.argeo.slc.core</module>
22 <module>org.argeo.slc.unit</module>
23 <module>org.argeo.slc.support</module>
24 <module>org.argeo.slc.repo</module>
25 <module>org.argeo.slc.factory</module>
26
27 <!-- Modules -->
28 <module>org.argeo.slc.agent</module>
29 <module>org.argeo.slc.node.jackrabbit</module>
30 <module>org.argeo.slc.agent.jcr</module>
31 <module>org.argeo.slc.server.repo</module>
32
33 <!-- UI -->
34 <module>org.argeo.slc.client.ui</module>
35 <module>org.argeo.slc.client.ui.dist</module>
36 <module>org.argeo.slc.client.rap</module>
37
38 <module>lib</module>
39 <module>dep</module>
40 <module>dist</module>
41 <module>demo</module>
42 </modules>
43 <url>http://projects.argeo.org/slc/</url>
44 <scm>
45 <connection>scm:svn:https://svn.argeo.org/slc/trunk</connection>
46 <developerConnection>scm:svn:https://svn.argeo.org/slc/trunk</developerConnection>
47 <url>https://svn.argeo.org/slc/trunk</url>
48 </scm>
49 <inceptionYear>2007</inceptionYear>
50 <licenses>
51 <license>
52 <name>Apache 2</name>
53 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
54 <distribution>repo</distribution>
55 <comments><![CDATA[
56 SLC (Software Life Cycle) framework
57
58 Copyright (C) 2007-2012 Argeo GmbH
59
60 Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
61 you may not use this file except in compliance with the License.
62 You may obtain a copy of the License at
63
64 http://www.apache.org/licenses/LICENSE-2.0
65
66 Unless required by applicable law or agreed to in writing, software
67 distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
68 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
69 See the License for the specific language governing permissions and
70 limitations under the License.
71 ]]>
72 </comments>
73 </license>
74 </licenses>
75 <developers>
76 <developer>
77 <id>mbaudier</id>
78 <name>Mathieu Baudier</name>
79 <email><![CDATA[http://mailhide.recaptcha.net/d?k=01EM7GpnvY3k8woQ2tnnZLUA==&c=crsNpHjhOBDPswHG6HD_gXaqymhC69wmBf7wlagcSHw=]]></email>
80 <organization>Argeo</organization>
81 <organizationUrl>http://www.argeo.org</organizationUrl>
82 <roles>
83 <role>architect</role>
84 <role>developer</role>
85 <role>QA</role>
86 </roles>
87 </developer>
88 <developer>
89 <id>ocapillo</id>
90 <name>Olivier Capillon</name>
91 <email><![CDATA[http://mailhide.recaptcha.net/d?k=01EM7GpnvY3k8woQ2tnnZLUA==&c=BYw8i94WiejnvegUKJoCZQQr0h-mYlKCNKZVe_3WPIA=]]></email>
92 <organization>Argeo</organization>
93 <organizationUrl>http://www.argeo.org</organizationUrl>
94 <roles>
95 <role>developer</role>
96 </roles>
97 </developer>
98 <developer>
99 <id>bsinou</id>
100 <name>Bruno Sinou</name>
101 <email><![CDATA[http://www.google.com/recaptcha/mailhide/d?k=01SZoYvDnJzcw0KOR7M7u6Qg==&c=SVgEjXA_Uu9ZrNzLES92w1ght6puLFiVpoNUddCfSU8=]]></email>
102 <organization>Argeo</organization>
103 <organizationUrl>http://www.argeo.org</organizationUrl>
104 <roles>
105 <role>developer</role>
106 </roles>
107 </developer>
108 </developers>
109 <build>
110 <plugins>
111 <plugin>
112 <artifactId>maven-site-plugin</artifactId>
113 <inherited>false</inherited>
114 <configuration>
115 <skip>false</skip>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
120 <repositories>
121 <repository>
122 <id>argeo</id>
123 <url>http://forge.argeo.org/data/public/java/argeo-2.1/</url>
124 <releases>
125 <enabled>true</enabled>
126 <updatePolicy>daily</updatePolicy>
127 <checksumPolicy>warn</checksumPolicy>
128 </releases>
129 </repository>
130 <!-- Disable Maven default repository -->
131 <repository>
132 <id>central</id>
133 <url>http://repo1.maven.org/maven2</url>
134 <releases>
135 <enabled>false</enabled>
136 </releases>
137 <snapshots>
138 <enabled>false</enabled>
139 </snapshots>
140 </repository>
141 </repositories>
142 <profiles>
143 <profile>
144 <id>localrepo</id>
145 <repositories>
146 <repository>
147 <id>argeo-tp</id>
148 <url>http://localhost:7070/data/public/java/argeo-${developmentCycle.argeo-commons}</url>
149 <releases>
150 <enabled>true</enabled>
151 <updatePolicy>daily</updatePolicy>
152 <checksumPolicy>warn</checksumPolicy>
153 </releases>
154 </repository>
155 <!-- <repository> -->
156 <!-- <id>argeo-tp-extras</id> -->
157 <!-- <url>http://localhost:7080/data/public/java/argeo-tp-extras-2.1</url> -->
158 <!-- <releases> -->
159 <!-- <enabled>true</enabled> -->
160 <!-- <updatePolicy>daily</updatePolicy> -->
161 <!-- <checksumPolicy>warn</checksumPolicy> -->
162 <!-- </releases> -->
163 <!-- </repository> -->
164 <repository>
165 <id>argeo-commons</id>
166 <url>http://localhost:7070/data/public/java/argeo-${developmentCycle.argeo-commons}</url>
167 <releases>
168 <enabled>true</enabled>
169 <updatePolicy>daily</updatePolicy>
170 <checksumPolicy>warn</checksumPolicy>
171 </releases>
172 </repository>
173 </repositories>
174 <distributionManagement>
175 <repository>
176 <id>staging</id>
177 <url>dav:http://localhost:7070/data/files/java/argeo-slc-${developmentCycle.slc}</url>
178 </repository>
179 <site>
180 <id>staging</id>
181 <url>dav:http://localhost:7070/data/files/docs/argeo-slc-${developmentCycle.slc}</url>
182 </site>
183 </distributionManagement>
184 </profile>
185 </profiles>
186 </project>