]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/modules/pom.xml
Make import more robust
[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 net.sf.cglib.core;resolution:=optional,
47 net.sf.cglib.proxy;resolution:=optional,
48 net.sf.cglib.reflect;resolution:=optional,
49 org.aopalliance.aop,
50 org.argeo.slc.core.execution,
51 org.argeo.slc.core.execution.tasks,
52 org.argeo.slc.core.structure.tree;resolution:=optional,
53 org.argeo.slc.execution,
54 org.argeo.slc.osgi,
55 org.argeo.slc.test;resolution:=optional,
56 org.argeo.slc.structure;resolution:=optional,
57 org.springframework.aop,
58 org.springframework.aop.framework,
59 org.springframework.aop.scope,
60 org.springframework.beans.factory.config,
61 org.springframework.core.io,
62 </Import-Package>
63 </instructions>
64 </configuration>
65 </plugin>
66 <plugin>
67 <artifactId>maven-clean-plugin</artifactId>
68 <configuration>
69 <filesets>
70 <fileset>
71 <directory>META-INF</directory>
72 <includes>
73 <include>MANIFEST.MF</include>
74 </includes>
75 </fileset>
76 </filesets>
77 </configuration>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-jar-plugin</artifactId>
82 </plugin>
83 </plugins>
84 </build>
85 </project>