]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
9999303d78ca2a218536da1faaf7364a630f6bea
[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.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 <bundlesToStart>
15 org.argeo.dep.osgi.catalina.start,
16 org.springframework.osgi.extender,
17 org.springframework.osgi.web.extender,
18 org.springframework.osgi.samples.simplewebapp,
19 org.argeo.slc.server.activemq,
20 org.argeo.slc.server.hsqldb,
21 org.argeo.slc.server.hibernate,
22 org.argeo.slc.server.services,
23 org.argeo.slc.server.jms,
24 org.argeo.slc.webapp,
25 org.argeo.slc.demo.basic,
26 org.argeo.slc.demo.manager
27 </bundlesToStart>
28 </properties>
29 <build>
30 <plugins>
31
32 <plugin>
33 <artifactId>maven-dependency-plugin</artifactId>
34 <executions>
35 <execution>
36 <goals>
37 <goal>unpack</goal>
38 </goals>
39 <phase>initialize</phase>
40 <configuration>
41 <outputDirectory>target/equinox</outputDirectory>
42 <artifactItems>
43 <artifactItem>
44 <groupId>org.argeo.slc.runtime</groupId>
45 <artifactId>org.argeo.slc.osgiboot</artifactId>
46 <version>${project.version}</version>
47 <type>tar.gz</type>
48 <classifier>osgiboot</classifier>
49 </artifactItem>
50 </artifactItems>
51 </configuration>
52 </execution>
53 </executions>
54 </plugin>
55 <plugin>
56 <artifactId>maven-antrun-plugin</artifactId>
57 <configuration>
58 <tasks>
59 <path id="slc.osgi.locations.raw">
60 <dirset dir="${user.dir}/bundles">
61 <include name="*" />
62 <exclude name=".svn" />
63 </dirset>
64 <dirset dir="${user.dir}/../../demo/site">
65 <include name="*" />
66 <exclude name=".svn" />
67 </dirset>
68 <!-- Dev for Argeo RIA: -->
69 <!--
70 <pathelement
71 location="../../org.argeo.slc.webapp/src/main/webapp" />
72 -->
73 <path refid="maven.compile.classpath" />
74 </path>
75 <pathconvert dirsep="/" property="slc.osgi.locations"
76 refid="slc.osgi.locations.raw" />
77
78 <property name="slc.osgi.start" value="${bundlesToStart}" />
79
80 <property name="javaCommand" value="java -Xmx256m" />
81 <ant antfile="target/equinox/osgiboot.xml" />
82 </tasks>
83 </configuration>
84 </plugin>
85 </plugins>
86 </build>
87 <dependencies>
88 <dependency>
89 <groupId>org.argeo.slc.runtime</groupId>
90 <artifactId>org.argeo.slc.server</artifactId>
91 </dependency>
92
93 <dependency>
94 <groupId>org.argeo.slc.server</groupId>
95 <artifactId>org.argeo.slc.ria</artifactId>
96 <version>${project.version}</version>
97 </dependency>
98
99
100 <dependency>
101 <groupId>org.hsqldb</groupId>
102 <artifactId>com.springsource.org.hsqldb</artifactId>
103 </dependency>
104
105 <!-- OSGi integration -->
106 <dependency>
107 <groupId>org.eclipse.osgi</groupId>
108 <artifactId>org.eclipse.osgi</artifactId>
109 </dependency>
110
111 <dependency>
112 <groupId>javax.annotation</groupId>
113 <artifactId>com.springsource.javax.annotation</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>javax.persistence</groupId>
117 <artifactId>com.springsource.javax.persistence</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>javax.xml.ws</groupId>
121 <artifactId>com.springsource.javax.xml.ws</artifactId>
122 </dependency>
123 <dependency>
124 <groupId>javax.xml.bind</groupId>
125 <artifactId>com.springsource.javax.xml.bind</artifactId>
126 </dependency>
127
128 <dependency>
129 <groupId>org.aopalliance</groupId>
130 <artifactId>com.springsource.org.aopalliance</artifactId>
131 </dependency>
132
133 <dependency>
134 <groupId>javax.ejb</groupId>
135 <artifactId>com.springsource.javax.ejb</artifactId>
136 </dependency>
137 <dependency>
138 <groupId>javax.activation</groupId>
139 <artifactId>com.springsource.javax.activation</artifactId>
140 </dependency>
141 <dependency>
142 <groupId>javax.xml.rpc</groupId>
143 <artifactId>com.springsource.javax.xml.rpc</artifactId>
144 </dependency>
145 <dependency>
146 <groupId>javax.xml.soap</groupId>
147 <artifactId>com.springsource.javax.xml.soap</artifactId>
148 </dependency>
149 <!--
150 Using springsource repo -->
151 <dependency>
152 <groupId>org.springframework.osgi</groupId>
153 <artifactId>org.springframework.osgi.web.extender</artifactId>
154 </dependency>
155 <dependency>
156 <groupId>org.springframework.osgi</groupId>
157 <artifactId>org.springframework.osgi.extender</artifactId>
158 </dependency>
159 <dependency>
160 <groupId>org.springframework.osgi</groupId>
161 <artifactId>org.springframework.osgi.web</artifactId>
162 </dependency>
163
164 <!-- Tomcat -->
165 <dependency>
166 <groupId>org.apache.catalina</groupId>
167 <artifactId>com.springsource.org.apache.catalina</artifactId>
168 </dependency>
169 <dependency>
170 <groupId>org.apache.jasper</groupId>
171 <artifactId>com.springsource.org.apache.jasper</artifactId>
172 </dependency>
173 <dependency>
174 <groupId>org.apache.el</groupId>
175 <artifactId>com.springsource.org.apache.el</artifactId>
176 </dependency>
177 <dependency>
178 <groupId>org.argeo.slc.dep.osgi</groupId>
179 <artifactId>org.argeo.dep.osgi.catalina.start</artifactId>
180 </dependency>
181
182
183 <dependency>
184 <groupId>org.apache.commons</groupId>
185 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
186 </dependency>
187 <dependency>
188 <groupId>org.apache.log4j</groupId>
189 <artifactId>
190 com.springsource.org.apache.log4j
191 </artifactId>
192 </dependency>
193
194 <!-- For WS -->
195 <dependency>
196 <groupId>com.sun.xml</groupId>
197 <artifactId>com.springsource.com.sun.xml.messaging.saaj</artifactId>
198 </dependency>
199
200 <!-- For ActiveMQ Web -->
201 <dependency>
202 <groupId>org.argeo.dep.osgi</groupId>
203 <artifactId>org.argeo.dep.osgi.activemq.web</artifactId>
204 </dependency>
205
206 <!-- For demo -->
207 <dependency>
208 <groupId>org.argeo.slc.demo</groupId>
209 <artifactId>org.argeo.slc.demo.deploy</artifactId>
210 <version>${project.version}</version>
211 <type>pom</type>
212 </dependency>
213
214 </dependencies>
215 </project>