]> git.argeo.org Git - gpl/argeo-slc.git/blob - server/org.argeo.slc.siteserver/pom.xml
ExecutionContext transformed to interface; mapping from ExecutionContexts to Threads...
[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" value="java -Xmx256m" />
102 <ant antfile="${equinoxDir}/org.argeo.slc.osgiboot-osgiboot.xml" />
103
104 </tasks>
105 </configuration>
106 </plugin>
107
108 <!--
109 <plugin> <artifactId>maven-dependency-plugin</artifactId>
110 <executions> <execution> <id>manager</id> <phase>initialize</phase>
111 <goals> <goal>list</goal> </goals> <configuration>
112 <outputFile>target/server.maven</outputFile> </configuration>
113 </execution> </executions> </plugin>
114 -->
115 <!--
116 <plugin> <groupId>org.mortbay.jetty</groupId>
117 <artifactId>maven-jetty-plugin</artifactId> <configuration>
118 <webApp>${project.build.directory}/dependency/org.argeo.slc.webapp.war</webApp>
119 <scanIntervalSeconds>0</scanIntervalSeconds>
120 <webDefaultXml>../../org.argeo.slc.webapp/src/main/config/jetty/webdefault.xml</webDefaultXml>
121 <jettyConfig>src/test/config/jetty/jetty.xml</jettyConfig>
122 <systemProperties> <systemProperty> <name>appserver.base</name>
123 <value>target</value> </systemProperty> <systemProperty>
124 <name>appserver.home</name> <value>target</value> </systemProperty>
125 </systemProperties> </configuration> </plugin>
126 -->
127 </plugins>
128 </build>
129 <dependencies>
130 <dependency>
131 <groupId>org.argeo.slc.runtime</groupId>
132 <artifactId>org.argeo.slc.server</artifactId>
133 </dependency>
134
135 <dependency>
136 <groupId>org.argeo.slc.server</groupId>
137 <artifactId>org.argeo.slc.ria</artifactId>
138 <version>${project.version}</version>
139 </dependency>
140
141
142 <dependency>
143 <groupId>org.hsqldb</groupId>
144 <artifactId>com.springsource.org.hsqldb</artifactId>
145 </dependency>
146
147 <!-- OSGi integration -->
148 <dependency>
149 <groupId>org.eclipse.osgi</groupId>
150 <artifactId>org.eclipse.osgi</artifactId>
151 </dependency>
152
153 <dependency>
154 <groupId>javax.annotation</groupId>
155 <artifactId>com.springsource.javax.annotation</artifactId>
156 </dependency>
157 <dependency>
158 <groupId>javax.persistence</groupId>
159 <artifactId>com.springsource.javax.persistence</artifactId>
160 </dependency>
161 <dependency>
162 <groupId>javax.xml.ws</groupId>
163 <artifactId>com.springsource.javax.xml.ws</artifactId>
164 </dependency>
165 <dependency>
166 <groupId>javax.xml.bind</groupId>
167 <artifactId>com.springsource.javax.xml.bind</artifactId>
168 </dependency>
169
170 <dependency>
171 <groupId>org.aopalliance</groupId>
172 <artifactId>com.springsource.org.aopalliance</artifactId>
173 <version>1.0.0</version>
174 </dependency>
175
176 <!--
177 Using springsource repo -->
178 <dependency>
179 <groupId>org.springframework.osgi</groupId>
180 <artifactId>org.springframework.osgi.web.extender</artifactId>
181 </dependency>
182 <dependency>
183 <groupId>org.springframework.osgi</groupId>
184 <artifactId>org.springframework.osgi.extender</artifactId>
185 </dependency>
186 <dependency>
187 <groupId>org.springframework.osgi</groupId>
188 <artifactId>org.springframework.osgi.web</artifactId>
189 </dependency>
190
191 <!-- Tomcat -->
192 <dependency>
193 <groupId>org.apache.catalina</groupId>
194 <artifactId>com.springsource.org.apache.catalina</artifactId>
195 </dependency>
196 <dependency>
197 <groupId>org.argeo.slc.dep.osgi</groupId>
198 <artifactId>org.argeo.dep.osgi.catalina.start</artifactId>
199 </dependency>
200
201 <dependency>
202 <groupId>org.apache.jasper</groupId>
203 <artifactId>com.springsource.org.apache.jasper</artifactId>
204 <version>6.0.18</version>
205 </dependency>
206 <dependency>
207 <groupId>org.apache.el</groupId>
208 <artifactId>com.springsource.org.apache.el</artifactId>
209 <version>6.0.18</version>
210 </dependency>
211
212 <dependency>
213 <groupId>javax.servlet</groupId>
214 <artifactId>com.springsource.javax.servlet.jsp</artifactId>
215 </dependency>
216 <dependency>
217 <groupId>javax.el</groupId>
218 <artifactId>com.springsource.javax.el</artifactId>
219 </dependency>
220 <dependency>
221 <groupId>javax.servlet</groupId>
222 <artifactId>com.springsource.javax.servlet.jsp.jstl</artifactId>
223 </dependency>
224 <dependency>
225 <groupId>org.apache.taglibs</groupId>
226 <artifactId>com.springsource.org.apache.taglibs.standard</artifactId>
227 </dependency>
228
229
230 <dependency>
231 <groupId>org.apache.commons</groupId>
232 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
233 </dependency>
234 <dependency>
235 <groupId>org.apache.log4j</groupId>
236 <artifactId>
237 com.springsource.org.apache.log4j
238 </artifactId>
239 </dependency>
240
241 <!-- Required in JDK 1.5 -->
242 <dependency>
243 <groupId>com.sun.xml</groupId>
244 <artifactId>
245 com.springsource.com.sun.xml.messaging.saaj
246 </artifactId>
247 </dependency>
248
249 <!-- For ActiveMQ Ajax -->
250 <dependency>
251 <groupId>org.mortbay.jetty</groupId>
252 <artifactId>com.springsource.org.mortbay.util</artifactId>
253 <version>6.1.9</version>
254 </dependency>
255
256 <dependency>
257 <groupId>com.thoughtworks.xstream</groupId>
258 <artifactId>com.springsource.com.thoughtworks.xstream</artifactId>
259 <version>1.2.2</version>
260 </dependency>
261
262 <!-- For demo -->
263 <dependency>
264 <groupId>org.argeo.slc.runtime</groupId>
265 <artifactId>org.argeo.slc.support.equinox</artifactId>
266 </dependency>
267 <dependency>
268 <groupId>org.argeo.slc.runtime</groupId>
269 <artifactId>org.argeo.slc.support.activemq</artifactId>
270 </dependency>
271 <dependency>
272 <groupId>org.argeo.slc.runtime</groupId>
273 <artifactId>org.argeo.slc.support.castor</artifactId>
274 </dependency>
275 <dependency>
276 <groupId>org.argeo.slc.runtime</groupId>
277 <artifactId>org.argeo.slc.support.maven</artifactId>
278 <version>${project.version}</version>
279 </dependency>
280
281 </dependencies>
282 <!--
283 <repositories> <repository> <id>spring-osgified-artifacts</id>
284 <snapshots> <enabled>true</enabled> </snapshots> <name>Springframework
285 Maven OSGified Artifacts Repository</name>
286 <url>http://maven.springframework.org/osgi</url> </repository>
287 </repositories>
288 -->
289 </project>