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