]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/demo/pom.xml
Jackrabbit
[lgpl/argeo-commons.git] / security / 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.2-SNAPSHOT</version>
7 <artifactId>security</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.security</groupId>
11 <artifactId>demo</artifactId>
12 <packaging>bundles</packaging>
13 <name>Commons Security 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.security.demo</bundlesPomArtifactId>
23 <execDir>target/exec</execDir>
24 <osgiBootArtifactId>org.argeo.osgi.boot</osgiBootArtifactId>
25 <argsToAppend>
26 <arg>-clean</arg>
27 </argsToAppend>
28 <fork>false</fork>
29 <systemProperties>
30 <argeo.osgi.start>
31 org.springframework.osgi.extender,
32 org.springframework.osgi.web.extender,
33 org.argeo.dep.osgi.catalina.start,
34 org.argeo.security.manager.ldap,
35 org.argeo.security.webapp,
36 org.argeo.security.ria,
37 org.argeo.security.core,
38 org.argeo.server.ads.server
39 </argeo.osgi.start>
40 <argeo.osgi.bundles>
41 ${basedir};in=*;ex=pom.xml;ex=target;ex=.*;ex=*.ldif,
42 ${basedir}/../modules;in=*;ex=pom.xml;ex=target;ex=.*,
43 ${basedir}/../../server/modules;in=*;ex=pom.xml;ex=target;ex=.*,
44 </argeo.osgi.bundles>
45 <org.osgi.framework.bootdelegation>com.sun.jndi.ldap</org.osgi.framework.bootdelegation>
46 </systemProperties>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51 <dependencies>
52 <!-- Argeo -->
53 <dependency>
54 <groupId>org.argeo.commons.security</groupId>
55 <artifactId>org.argeo.security.mvc</artifactId>
56 <version>0.1.2-SNAPSHOT</version>
57 </dependency>
58 <dependency>
59 <groupId>org.argeo.commons.security</groupId>
60 <artifactId>org.argeo.security.ria</artifactId>
61 <version>0.1.2-SNAPSHOT</version>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.commons.server</groupId>
65 <artifactId>org.argeo.server.json</artifactId>
66 <version>0.1.2-SNAPSHOT</version>
67 </dependency>
68
69 <!-- OSGi -->
70 <dependency>
71 <groupId>org.argeo.commons.osgi</groupId>
72 <artifactId>org.argeo.osgi.boot</artifactId>
73 <version>0.1.2-SNAPSHOT</version>
74 </dependency>
75
76 <!-- Commons Dep -->
77 <dependency>
78 <groupId>org.argeo.commons.server</groupId>
79 <artifactId>org.argeo.server.dep.tomcat</artifactId>
80 <version>0.1.2-SNAPSHOT</version>
81 <type>pom</type>
82 </dependency>
83 <dependency>
84 <groupId>org.argeo.commons.server</groupId>
85 <artifactId>org.argeo.server.dep.ads</artifactId>
86 <version>0.1.2-SNAPSHOT</version>
87 <type>pom</type>
88 </dependency>
89
90 <!-- Spring -->
91 <dependency>
92 <groupId>org.springframework.osgi</groupId>
93 <artifactId>org.springframework.osgi.extender</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.springframework.osgi</groupId>
97 <artifactId>org.springframework.osgi.web.extender</artifactId>
98 </dependency>
99
100 <!-- Used to start the Apache Directory server -->
101 <dependency>
102 <groupId>org.argeo.commons.server</groupId>
103 <artifactId>org.argeo.server.ads</artifactId>
104 <version>0.1.2-SNAPSHOT</version>
105 </dependency>
106
107 </dependencies>
108 </project>