]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/runtime/pom.xml
Improve LDAP security DAO
[lgpl/argeo-commons.git] / server / runtime / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons</groupId>
6 <version>0.2.3-SNAPSHOT</version>
7 <artifactId>server</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.server</groupId>
11 <artifactId>runtime</artifactId>
12 <name>Commons Server Runtime</name>
13 <packaging>pom</packaging>
14 <modules>
15 <module>org.argeo.server.core</module>
16 <module>org.argeo.server.json</module>
17 <module>org.argeo.server.webextender</module>
18 <module>org.argeo.server.jxl</module>
19 <module>org.argeo.server.hibernate</module>
20 <module>org.argeo.server.ads</module>
21 <module>org.argeo.server.jcr</module>
22 <module>org.argeo.server.jcr.mvc</module>
23 <module>org.argeo.server.jackrabbit</module>
24 <module>org.argeo.server.modeshape</module>
25 </modules>
26 <build>
27 <resources>
28 <resource>
29 <directory>src/main/resources</directory>
30 </resource>
31 <resource>
32 <directory>.</directory>
33 <includes>
34 <include>META-INF/**</include>
35 </includes>
36 </resource>
37 </resources>
38 <plugins>
39 <plugin>
40 <artifactId>maven-clean-plugin</artifactId>
41 <configuration>
42 <filesets>
43 <fileset>
44 <directory>META-INF</directory>
45 <includes>
46 <include>MANIFEST.MF</include>
47 </includes>
48 </fileset>
49 </filesets>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-jar-plugin</artifactId>
55 </plugin>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-source-plugin</artifactId>
59 </plugin>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-surefire-plugin</artifactId>
63 </plugin>
64 <plugin>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>maven-bundle-plugin</artifactId>
67 <extensions>true</extensions>
68 </plugin>
69 </plugins>
70 </build>
71 </project>