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