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