]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/demo/pom.xml
Make JXL DAO support more robust
[lgpl/argeo-commons.git] / server / demo / 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 <version>0.1.1-SNAPSHOT</version>
7 <artifactId>server</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.server</groupId>
11 <artifactId>demo</artifactId>
12 <packaging>bundles</packaging>
13 <name>Commons Server Demo</name>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.argeo.maven.plugins</groupId>
18 <artifactId>maven-argeo-osgi-plugin</artifactId>
19 <version>${version.maven-argeo-osgi}</version>
20 <extensions>true</extensions>
21 <configuration>
22 <bundlesPomArtifactId>org.argeo.server.demo</bundlesPomArtifactId>
23 <execDir>target/exec/server</execDir>
24 <osgiBootArtifactId>org.argeo.osgi.boot</osgiBootArtifactId>
25 <systemProperties>
26 <slc.osgi.start>
27 org.springframework.osgi.extender,
28 org.springframework.osgi.web.extender,
29 org.argeo.dep.osgi.catalina.start,
30 org.argeo.server.demo.miniwebapp
31 </slc.osgi.start>
32 <slc.osgi.bundles>
33 ${basedir};in=*;ex=pom.xml;ex=target;ex=.*,
34 ${basedir}/../modules;in=*;ex=pom.xml;ex=target;ex=.*,
35 </slc.osgi.bundles>
36 </systemProperties>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <!-- OSGi -->
43 <dependency>
44 <groupId>org.argeo.commons.osgi</groupId>
45 <artifactId>org.argeo.osgi.boot</artifactId>
46 <version>0.1.1-SNAPSHOT</version>
47 </dependency>
48
49 <!-- Commons Dep -->
50 <dependency>
51 <groupId>org.argeo.commons.server</groupId>
52 <artifactId>org.argeo.server.dep.tomcat</artifactId>
53 <version>0.1.1-SNAPSHOT</version>
54 <type>pom</type>
55 </dependency>
56
57 <!-- Spring -->
58 <dependency>
59 <groupId>org.springframework.osgi</groupId>
60 <artifactId>org.springframework.osgi.extender</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.springframework.osgi</groupId>
64 <artifactId>org.springframework.osgi.web.extender</artifactId>
65 </dependency>
66
67 </dependencies>
68 </project>