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