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