]> git.argeo.org Git - gpl/argeo-slc.git/blob - legacy/lib/pom.xml
Adapt to changes in Argeo Commons
[gpl/argeo-slc.git] / legacy / 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>legacy</artifactId>
6 <version>2.3-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 <properties>
14 <additionalImports.slc-lib>
15 com.jcraft.jsch;resolution:=optional,
16 org.apache.commons.exec;resolution:=optional,
17 </additionalImports.slc-lib>
18 </properties>
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>maven-bundle-plugin</artifactId>
24 <configuration>
25 <instructions>
26 <SLC-ExecutionModule>default</SLC-ExecutionModule>
27 <!-- Minimal imports + some optional convenience imports -->
28 <Import-Package>
29 org.argeo.security.jackrabbit;resolution:="optional",
30 org.springframework.cglib.proxy;resolution:="optional",
31 org.springframework.cglib.core;resolution:="optional",
32 org.springframework.cglib.reflect;resolution:="optional",
33 org.aopalliance.aop;resolution:="optional",
34 org.argeo.slc.runtime,
35 org.argeo.slc.core.execution;resolution:="optional",
36 org.argeo.slc.core.execution.tasks;resolution:="optional",
37 org.argeo.slc.execution,
38 org.argeo.slc.osgi;resolution:="optional",
39 org.argeo.slc.test,
40 org.springframework.aop;resolution:="optional",
41 org.springframework.aop.framework;resolution:="optional",
42 org.springframework.aop.scope;resolution:="optional",
43 org.springframework.beans.factory.config;resolution:="optional",
44 org.springframework.core.io;resolution:="optional",
45 ${additionalImports.slc-lib},
46 *
47 </Import-Package>
48 </instructions>
49 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53 <dependencies>
54 <dependency>
55 <groupId>org.argeo.slc</groupId>
56 <artifactId>org.argeo.slc.dep.minimal</artifactId>
57 <version>2.3-SNAPSHOT</version>
58 <type>pom</type>
59 </dependency>
60 </dependencies>
61 </project>