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