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