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