]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/modules/pom.xml
Remove unnecessary warning
[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>2.1.1-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 <plugins>
30 <plugin>
31 <groupId>org.apache.felix</groupId>
32 <artifactId>maven-bundle-plugin</artifactId>
33 <configuration>
34 <instructions>
35 <SLC-ExecutionModule>default</SLC-ExecutionModule>
36 <!-- Minimal imports + some optional convenience imports -->
37 <Import-Package>
38 org.springframework.cglib.proxy,
39 org.springframework.cglib.core,
40 org.springframework.cglib.reflect,
41 org.aopalliance.aop,
42 org.argeo.slc.core.execution,
43 org.argeo.slc.core.execution.tasks,
44 org.argeo.slc.execution,
45 org.argeo.slc.osgi,
46 org.argeo.slc.test,
47 org.springframework.aop,
48 org.springframework.aop.framework,
49 org.springframework.aop.scope,
50 org.springframework.beans.factory.config,
51 org.springframework.core.io,
52 ${additionalImports.slc-lib},
53 *
54 </Import-Package>
55 </instructions>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60 <dependencies>
61 <dependency>
62 <groupId>org.argeo.slc</groupId>
63 <artifactId>org.argeo.slc.dep.minimal</artifactId>
64 <version>2.1.1-SNAPSHOT</version>
65 <type>pom</type>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.slc</groupId>
69 <artifactId>org.argeo.slc.dep.backend</artifactId>
70 <version>2.1.1-SNAPSHOT</version>
71 <type>pom</type>
72 <optional>true</optional>
73 </dependency>
74 </dependencies>
75 </project>