]> git.argeo.org Git - gpl/argeo-slc.git/blob - lib/pom.xml
Introduce Spring support in SLC Eclipse 4.
[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" 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>2.1.17-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 org.springframework.cglib.proxy;resolution:="optional",
50 org.springframework.cglib.core;resolution:="optional",
51 org.springframework.cglib.reflect;resolution:="optional",
52 org.aopalliance.aop;resolution:="optional",
53 org.argeo.slc.runtime,
54 org.argeo.slc.core.execution;resolution:="optional",
55 org.argeo.slc.core.execution.tasks;resolution:="optional",
56 org.argeo.slc.execution,
57 org.argeo.slc.osgi;resolution:="optional",
58 org.argeo.slc.test,
59 org.springframework.aop;resolution:="optional",
60 org.springframework.aop.framework;resolution:="optional",
61 org.springframework.aop.scope;resolution:="optional",
62 org.springframework.beans.factory.config;resolution:="optional",
63 org.springframework.core.io;resolution:="optional",
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.17-SNAPSHOT</version>
77 <type>pom</type>
78 </dependency>
79 </dependencies>
80 </project>