]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/modules/pom.xml
Add SLC-ExecutionModule manifets header
[gpl/argeo-slc.git] / demo / 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.slc</groupId>
6 <artifactId>demo</artifactId>
7 <version>0.13.2-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.demo</groupId>
11 <artifactId>modules</artifactId>
12 <packaging>pom</packaging>
13 <name>SLC Demo Modules</name>
14 <modules>
15 <module>org.argeo.slc.demo.ant</module>
16 <module>org.argeo.slc.demo.basic</module>
17 <module>org.argeo.slc.demo.det</module>
18 <module>org.argeo.slc.demo.detached</module>
19 <module>org.argeo.slc.demo.maven</module>
20 <module>org.argeo.slc.demo.minimal</module>
21 </modules>
22 <build>
23 <resources>
24 <resource>
25 <directory>.</directory>
26 <includes>
27 <include>**</include>
28 </includes>
29 <excludes>
30 <exclude>.*</exclude>
31 <exclude>pom.xml</exclude>
32 <exclude>build.properties</exclude>
33 </excludes>
34 </resource>
35 </resources>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>maven-bundle-plugin</artifactId>
40 <configuration>
41 <instructions>
42 <SLC-ExecutionModule>default</SLC-ExecutionModule>
43 <!-- Minimal imports -->
44 <Import-Package>
45 *,
46 org.aopalliance.aop,
47 org.argeo.slc.core.execution,
48 org.argeo.slc.core.execution.tasks,
49 org.argeo.slc.execution,
50 org.argeo.slc.osgi,
51 org.springframework.aop,
52 org.springframework.aop.framework,
53 org.springframework.aop.scope,
54 org.springframework.beans.factory.config,
55 org.springframework.core.io,
56 </Import-Package>
57 </instructions>
58 </configuration>
59 </plugin>
60 <plugin>
61 <artifactId>maven-clean-plugin</artifactId>
62 <configuration>
63 <filesets>
64 <fileset>
65 <directory>META-INF</directory>
66 <includes>
67 <include>MANIFEST.MF</include>
68 </includes>
69 </fileset>
70 </filesets>
71 </configuration>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-jar-plugin</artifactId>
76 </plugin>
77 </plugins>
78 </build>
79 </project>