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