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