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