]> git.argeo.org Git - gpl/argeo-slc.git/blob - lib/pom.xml
RPM build
[gpl/argeo-slc.git] / lib / 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>2.1.1-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.build</module> -->
16 <!-- <module>org.argeo.slc.lib.jcr</module> -->
17 <!-- <module>org.argeo.slc.lib.repo</module> -->
18 <!-- <module>org.argeo.slc.lib.rpmfactory</module> -->
19 </modules>
20 <properties>
21 <additionalImports.slc-lib>
22 com.jcraft.jsch;resolution:=optional,
23 org.apache.commons.exec;resolution:=optional,
24 </additionalImports.slc-lib>
25 </properties>
26 <build>
27 <resources>
28 <resource>
29 <directory>.</directory>
30 <includes>
31 <include>**</include>
32 </includes>
33 <excludes>
34 <exclude>.*</exclude>
35 <exclude>.*/**</exclude>
36 <exclude>pom.xml</exclude>
37 <exclude>build.properties</exclude>
38 </excludes>
39 </resource>
40 </resources>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <configuration>
46 <instructions>
47 <SLC-ExecutionModule>default</SLC-ExecutionModule>
48 <!-- Minimal imports + some optional convenience imports -->
49 <Import-Package>
50 org.springframework.cglib.proxy,
51 org.springframework.cglib.core,
52 org.springframework.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 *
66 </Import-Package>
67 </instructions>
68 </configuration>
69 </plugin>
70 </plugins>
71 </build>
72 <dependencies>
73 <dependency>
74 <groupId>org.argeo.slc</groupId>
75 <artifactId>org.argeo.slc.dep.minimal</artifactId>
76 <version>2.1.1-SNAPSHOT</version>
77 <type>pom</type>
78 </dependency>
79 </dependencies>
80 </project>