]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/modules/pom.xml
Reactivate launcher
[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>1.1.4-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 <properties>
23 <additionalImports.slc-lib>
24 com.jcraft.jsch;resolution:=optional,
25 org.apache.commons.exec;resolution:=optional,
26 </additionalImports.slc-lib>
27 </properties>
28 <build>
29 <resources>
30 <resource>
31 <directory>.</directory>
32 <includes>
33 <include>**</include>
34 </includes>
35 <excludes>
36 <exclude>.*</exclude>
37 <exclude>.*/**</exclude>
38 <exclude>pom.xml</exclude>
39 <exclude>build.properties</exclude>
40 </excludes>
41 </resource>
42 </resources>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>maven-bundle-plugin</artifactId>
47 <configuration>
48 <instructions>
49 <SLC-ExecutionModule>default</SLC-ExecutionModule>
50 <!-- Minimal imports + some optional convenience imports -->
51 <Import-Package>
52 *,
53 net.sf.cglib.core,
54 net.sf.cglib.proxy,
55 net.sf.cglib.reflect,
56 org.aopalliance.aop,
57 org.argeo.slc.core.execution,
58 org.argeo.slc.core.execution.tasks,
59 org.argeo.slc.execution,
60 org.argeo.slc.osgi,
61 org.argeo.slc.test,
62 org.springframework.aop,
63 org.springframework.aop.framework,
64 org.springframework.aop.scope,
65 org.springframework.beans.factory.config,
66 org.springframework.core.io,
67 ${additionalImports.slc-lib}
68 </Import-Package>
69 </instructions>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74 <dependencies>
75 <dependency>
76 <groupId>org.argeo.slc</groupId>
77 <artifactId>org.argeo.slc.dep.minimal</artifactId>
78 <version>1.1.4-SNAPSHOT</version>
79 <type>pom</type>
80 </dependency>
81 <dependency>
82 <groupId>org.argeo.slc</groupId>
83 <artifactId>org.argeo.slc.dep.backend</artifactId>
84 <version>1.1.4-SNAPSHOT</version>
85 <type>pom</type>
86 <optional>true</optional>
87 </dependency>
88 </dependencies>
89 </project>