]> git.argeo.org Git - gpl/argeo-slc.git/blob - server/org.argeo.slc.siteserver/pom.xml
Build XML String
[gpl/argeo-slc.git] / server / org.argeo.slc.siteserver / 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.slc</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.siteserver</artifactId>
11 <packaging>pom</packaging>
12 <name>Argeo SLC Site server</name>
13 <properties>
14 <spring-osgi.version>1.1.2</spring-osgi.version>
15 <spring.version>2.5.5</spring.version>
16 </properties>
17 <build>
18 <plugins>
19
20 <plugin>
21 <artifactId>maven-dependency-plugin</artifactId>
22 <executions>
23 <execution>
24 <id>copy</id>
25 <phase>initialize</phase>
26 <goals>
27 <goal>copy</goal>
28 </goals>
29 <configuration>
30 <outputDirectory>${project.build.directory}/equinox</outputDirectory>
31 <stripVersion>true</stripVersion>
32 <artifactItems>
33 <artifactItem>
34 <groupId>org.eclipse.osgi</groupId>
35 <artifactId>org.eclipse.osgi</artifactId>
36 <version>${version.equinox}</version>
37 </artifactItem>
38 <artifactItem>
39 <groupId>org.argeo.slc.runtime</groupId>
40 <artifactId>org.argeo.slc.osgiboot</artifactId>
41 <version>${project.version}</version>
42 </artifactItem>
43 <artifactItem>
44 <groupId>org.argeo.slc.runtime</groupId>
45 <artifactId>org.argeo.slc.osgiboot</artifactId>
46 <version>${project.version}</version>
47 <type>xml</type>
48 <classifier>osgiboot</classifier>
49 </artifactItem>
50 <!-- For Hibernate -->
51 <artifactItem>
52 <groupId>org.objectweb.asm</groupId>
53 <artifactId>com.springsource.org.objectweb.asm</artifactId>
54 <version>1.5.3</version>
55 </artifactItem>
56 <artifactItem>
57 <groupId>org.objectweb.asm</groupId>
58 <artifactId>com.springsource.org.objectweb.asm.attrs</artifactId>
59 <version>1.5.3</version>
60 </artifactItem>
61 </artifactItems>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 <plugin>
67 <artifactId>maven-antrun-plugin</artifactId>
68 <configuration>
69 <tasks>
70
71 <property name="equinoxDir" location="${project.build.directory}/equinox" />
72
73 <path id="slc.osgi.locations.raw">
74 <dirset dir="${user.dir}/bundles">
75 <include name="*" />
76 <exclude name=".svn" />
77 </dirset>
78 <dirset dir="${user.dir}/../../demo/site">
79 <include name="*" />
80 <exclude name=".svn" />
81 </dirset>
82 <!-- Old ASM for Hibernate: -->
83 <pathelement
84 location="${equinoxDir}/com.springsource.org.objectweb.asm.jar" />
85 <pathelement
86 location="${equinoxDir}/com.springsource.org.objectweb.asm.attrs.jar" />
87 <!-- Dev for Argeo RIA: -->
88 <!--
89 <pathelement
90 location="../../org.argeo.slc.webapp/src/main/webapp" />
91 -->
92 <path refid="maven.compile.classpath" />
93 </path>
94 <pathconvert dirsep="/" property="slc.osgi.locations"
95 refid="slc.osgi.locations.raw">
96 </pathconvert>
97
98 <property name="slc.osgi.start"
99 value="org.argeo.dep.osgi.catalina.start,org.springframework.osgi.extender,org.springframework.osgi.web.extender,org.springframework.osgi.samples.simplewebapp,org.argeo.slc.server.activemq,org.argeo.slc.server.hibernate,org.argeo.slc.webapp,org.argeo.slc.demo.basic,org.argeo.slc.demo.manager" />
100
101 <property name="javaCommand"
102 location="${java.home}${file.separator}bin${file.separator}java -Xmx256m" />
103 <ant antfile="${equinoxDir}/org.argeo.slc.osgiboot-osgiboot.xml" />
104
105 </tasks>
106 </configuration>
107 </plugin>
108
109 <!--
110 <plugin> <artifactId>maven-dependency-plugin</artifactId>
111 <executions> <execution> <id>manager</id> <phase>initialize</phase>
112 <goals> <goal>list</goal> </goals> <configuration>
113 <outputFile>target/server.maven</outputFile> </configuration>
114 </execution> </executions> </plugin>
115 -->
116 <!--
117 <plugin> <groupId>org.mortbay.jetty</groupId>
118 <artifactId>maven-jetty-plugin</artifactId> <configuration>
119 <webApp>${project.build.directory}/dependency/org.argeo.slc.webapp.war</webApp>
120 <scanIntervalSeconds>0</scanIntervalSeconds>
121 <webDefaultXml>../../org.argeo.slc.webapp/src/main/config/jetty/webdefault.xml</webDefaultXml>
122 <jettyConfig>src/test/config/jetty/jetty.xml</jettyConfig>
123 <systemProperties> <systemProperty> <name>appserver.base</name>
124 <value>target</value> </systemProperty> <systemProperty>
125 <name>appserver.home</name> <value>target</value> </systemProperty>
126 </systemProperties> </configuration> </plugin>
127 -->
128 </plugins>
129 </build>
130 <dependencies>
131 <dependency>
132 <groupId>org.argeo.slc.runtime</groupId>
133 <artifactId>org.argeo.slc.server</artifactId>
134 </dependency>
135
136 <dependency>
137 <groupId>org.argeo.slc.server</groupId>
138 <artifactId>org.argeo.slc.ria</artifactId>
139 <version>${project.version}</version>
140 </dependency>
141
142
143 <dependency>
144 <groupId>org.hsqldb</groupId>
145 <artifactId>com.springsource.org.hsqldb</artifactId>
146 </dependency>
147
148 <!-- OSGi integration -->
149 <dependency>
150 <groupId>org.eclipse.osgi</groupId>
151 <artifactId>org.eclipse.osgi</artifactId>
152 </dependency>
153
154 <dependency>
155 <groupId>javax.annotation</groupId>
156 <artifactId>com.springsource.javax.annotation</artifactId>
157 </dependency>
158 <dependency>
159 <groupId>javax.persistence</groupId>
160 <artifactId>com.springsource.javax.persistence</artifactId>
161 </dependency>
162 <dependency>
163 <groupId>javax.xml.ws</groupId>
164 <artifactId>com.springsource.javax.xml.ws</artifactId>
165 </dependency>
166 <dependency>
167 <groupId>javax.xml.bind</groupId>
168 <artifactId>com.springsource.javax.xml.bind</artifactId>
169 </dependency>
170
171 <dependency>
172 <groupId>org.aopalliance</groupId>
173 <artifactId>com.springsource.org.aopalliance</artifactId>
174 <version>1.0.0</version>
175 </dependency>
176
177 <!--
178 Using springsource repo -->
179 <dependency>
180 <groupId>org.springframework.osgi</groupId>
181 <artifactId>org.springframework.osgi.web.extender</artifactId>
182 </dependency>
183 <dependency>
184 <groupId>org.springframework.osgi</groupId>
185 <artifactId>org.springframework.osgi.extender</artifactId>
186 </dependency>
187 <dependency>
188 <groupId>org.springframework.osgi</groupId>
189 <artifactId>org.springframework.osgi.web</artifactId>
190 </dependency>
191
192 <!-- Tomcat -->
193 <dependency>
194 <groupId>org.apache.catalina</groupId>
195 <artifactId>com.springsource.org.apache.catalina</artifactId>
196 </dependency>
197 <dependency>
198 <groupId>org.argeo.slc.dep.osgi</groupId>
199 <artifactId>org.argeo.dep.osgi.catalina.start</artifactId>
200 </dependency>
201
202 <dependency>
203 <groupId>org.apache.jasper</groupId>
204 <artifactId>com.springsource.org.apache.jasper</artifactId>
205 <version>6.0.18</version>
206 </dependency>
207 <dependency>
208 <groupId>org.apache.el</groupId>
209 <artifactId>com.springsource.org.apache.el</artifactId>
210 <version>6.0.18</version>
211 </dependency>
212
213 <dependency>
214 <groupId>javax.servlet</groupId>
215 <artifactId>com.springsource.javax.servlet.jsp</artifactId>
216 </dependency>
217 <dependency>
218 <groupId>javax.el</groupId>
219 <artifactId>com.springsource.javax.el</artifactId>
220 </dependency>
221 <dependency>
222 <groupId>javax.servlet</groupId>
223 <artifactId>com.springsource.javax.servlet.jsp.jstl</artifactId>
224 </dependency>
225 <dependency>
226 <groupId>org.apache.taglibs</groupId>
227 <artifactId>com.springsource.org.apache.taglibs.standard</artifactId>
228 </dependency>
229
230
231 <dependency>
232 <groupId>org.apache.commons</groupId>
233 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
234 </dependency>
235 <dependency>
236 <groupId>org.apache.log4j</groupId>
237 <artifactId>
238 com.springsource.org.apache.log4j
239 </artifactId>
240 </dependency>
241
242 <!-- Required in JDK 1.5 -->
243 <dependency>
244 <groupId>com.sun.xml</groupId>
245 <artifactId>
246 com.springsource.com.sun.xml.messaging.saaj
247 </artifactId>
248 </dependency>
249
250 <!-- For ActiveMQ Ajax -->
251 <dependency>
252 <groupId>org.mortbay.jetty</groupId>
253 <artifactId>com.springsource.org.mortbay.util</artifactId>
254 <version>6.1.9</version>
255 </dependency>
256
257 <dependency>
258 <groupId>com.thoughtworks.xstream</groupId>
259 <artifactId>com.springsource.com.thoughtworks.xstream</artifactId>
260 <version>1.2.2</version>
261 </dependency>
262
263 <!-- For demo -->
264 <dependency>
265 <groupId>org.argeo.slc.runtime</groupId>
266 <artifactId>org.argeo.slc.support.equinox</artifactId>
267 </dependency>
268 <dependency>
269 <groupId>org.argeo.slc.runtime</groupId>
270 <artifactId>org.argeo.slc.support.activemq</artifactId>
271 </dependency>
272 <dependency>
273 <groupId>org.argeo.slc.runtime</groupId>
274 <artifactId>org.argeo.slc.support.castor</artifactId>
275 </dependency>
276 <dependency>
277 <groupId>org.argeo.slc.runtime</groupId>
278 <artifactId>org.argeo.slc.support.maven</artifactId>
279 <version>${project.version}</version>
280 </dependency>
281
282 </dependencies>
283 <!--
284 <repositories>
285 <repository>
286 <id>spring-osgified-artifacts</id>
287 <snapshots>
288 <enabled>true</enabled>
289 </snapshots>
290 <name>Springframework Maven OSGified Artifacts Repository</name>
291 <url>http://maven.springframework.org/osgi</url>
292 </repository>
293 </repositories>
294 -->
295 </project>