]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/modules/pom.xml
Improve JCR remoting
[lgpl/argeo-commons.git] / server / modules / 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.3.4-SNAPSHOT</version>
7 <artifactId>server</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.commons.server</groupId>
11 <artifactId>modules</artifactId>
12 <packaging>pom</packaging>
13 <name>Commons Server Modules</name>
14 <modules>
15 <module>org.argeo.ext.jackrabbit.sybase</module>
16 <module>org.argeo.jackrabbit.webapp</module>
17 <module>org.argeo.node.repo.jackrabbit</module>
18 <module>org.argeo.node.repofactory.jackrabbit</module>
19 <module>org.argeo.server.activemq.broker</module>
20 <module>org.argeo.server.ads.server</module>
21 <module>org.argeo.server.catalina</module>
22 <module>org.argeo.server.hsqldb</module>
23 <module>org.argeo.server.jdbc</module>
24 <module>org.argeo.server.mysql</module>
25 <module>org.argeo.server.rap.webapp</module>
26 <module>org.argeo.server.tomcat</module>
27 </modules>
28 <build>
29 <resources>
30 <resource>
31 <directory>.</directory>
32 <includes>
33 <include>**</include>
34 </includes>
35 <excludes>
36 <exclude>.*</exclude>
37 <exclude>.*/**</exclude>
38 <exclude>pom.xml</exclude>
39 <exclude>build.properties</exclude>
40 </excludes>
41 </resource>
42 </resources>
43 <plugins>
44 <plugin>
45 <artifactId>maven-clean-plugin</artifactId>
46 <configuration>
47 <filesets>
48 <fileset>
49 <directory>META-INF</directory>
50 <includes>
51 <include>MANIFEST.MF</include>
52 </includes>
53 </fileset>
54 </filesets>
55 </configuration>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-jar-plugin</artifactId>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 <configuration>
65 <instructions>
66 <Export-Package></Export-Package>
67 </instructions>
68 </configuration>
69 </plugin>
70 </plugins>
71 </build>
72 </project>