]> git.argeo.org Git - gpl/argeo-slc.git/blob - modules/server/pom.xml
Rename site into modules
[gpl/argeo-slc.git] / modules / server / 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.slc</groupId>
5 <artifactId>modules</artifactId>
6 <version>0.13.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.modules</groupId>
10 <artifactId>server</artifactId>
11 <packaging>pom</packaging>
12 <name>SLC Modules Server</name>
13 <modules>
14 <module>org.argeo.slc.node.jackrabbit</module>
15 <module>org.argeo.slc.server.repo</module>
16 <module>org.argeo.slc.server.repo.webapp</module>
17 </modules>
18 <build>
19 <resources>
20 <resource>
21 <directory>.</directory>
22 <includes>
23 <include>**</include>
24 </includes>
25 <excludes>
26 <exclude>.*</exclude>
27 <exclude>pom.xml</exclude>
28 <exclude>build.properties</exclude>
29 </excludes>
30 </resource>
31 </resources>
32 <plugins>
33 <plugin>
34 <artifactId>maven-clean-plugin</artifactId>
35 <configuration>
36 <filesets>
37 <fileset>
38 <directory>META-INF</directory>
39 <includes>
40 <include>MANIFEST.MF</include>
41 </includes>
42 </fileset>
43 </filesets>
44 </configuration>
45 </plugin>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-jar-plugin</artifactId>
49 </plugin>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
53 </plugin>
54 </plugins>
55 </build>
56 </project>