]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/demo/pom.xml
Introduce Jackrabbit sandbox
[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.1.2-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 <slc.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 </slc.osgi.start>
39 <slc.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 </slc.osgi.bundles>
44 </systemProperties>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49 <dependencies>
50 <!-- Argeo -->
51 <dependency>
52 <groupId>org.argeo.commons.security</groupId>
53 <artifactId>org.argeo.security.mvc</artifactId>
54 <version>0.1.2-SNAPSHOT</version>
55 </dependency>
56 <dependency>
57 <groupId>org.argeo.commons.security</groupId>
58 <artifactId>org.argeo.security.ria</artifactId>
59 <version>0.1.2-SNAPSHOT</version>
60 </dependency>
61 <dependency>
62 <groupId>org.argeo.commons.server</groupId>
63 <artifactId>org.argeo.server.json</artifactId>
64 <version>0.1.2-SNAPSHOT</version>
65 </dependency>
66
67 <!-- OSGi -->
68 <dependency>
69 <groupId>org.argeo.commons.osgi</groupId>
70 <artifactId>org.argeo.osgi.boot</artifactId>
71 <version>0.1.2-SNAPSHOT</version>
72 </dependency>
73
74 <!-- Commons Dep -->
75 <dependency>
76 <groupId>org.argeo.commons.server</groupId>
77 <artifactId>org.argeo.server.dep.tomcat</artifactId>
78 <version>0.1.2-SNAPSHOT</version>
79 <type>pom</type>
80 </dependency>
81 <dependency>
82 <groupId>org.argeo.commons.server</groupId>
83 <artifactId>org.argeo.server.dep.ads</artifactId>
84 <version>0.1.2-SNAPSHOT</version>
85 <type>pom</type>
86 </dependency>
87
88 <!-- Spring -->
89 <dependency>
90 <groupId>org.springframework.osgi</groupId>
91 <artifactId>org.springframework.osgi.extender</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.springframework.osgi</groupId>
95 <artifactId>org.springframework.osgi.web.extender</artifactId>
96 </dependency>
97 </dependencies>
98 </project>