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