]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.ant/pom.xml
Split org.argeo.slc.agent
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.ant / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>argeo-slc</artifactId>
7 <version>0.11.2-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.runtime</groupId>
11 <artifactId>org.argeo.slc.support.ant</artifactId>
12 <packaging>jar</packaging>
13 <name>Argeo SLC Support Ant</name>
14 <build>
15 <plugins>
16 <!-- Look to parent pom for inheritances -->
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-compiler-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-jar-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-source-plugin</artifactId>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-surefire-plugin</artifactId>
32 </plugin>
33 <plugin>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>maven-bundle-plugin</artifactId>
36 <configuration>
37 <instructions>
38 <Export-Package>
39 org.argeo.slc.ant.*
40 </Export-Package>
41 </instructions>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 <dependencies>
47 <dependency>
48 <groupId>org.argeo.slc.runtime</groupId>
49 <artifactId>org.argeo.slc.specs</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.argeo.slc.runtime</groupId>
54 <artifactId>org.argeo.slc.support.simple</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.argeo.dep.osgi</groupId>
60 <artifactId>org.argeo.dep.osgi.ant</artifactId>
61 </dependency>
62
63 <dependency>
64 <groupId>org.apache.commons</groupId>
65 <artifactId>com.springsource.org.apache.commons.net</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.oro</groupId>
69 <artifactId>com.springsource.org.apache.oro</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.apache.bsf</groupId>
74 <artifactId>com.springsource.org.apache.bsf</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.beanshell</groupId>
78 <artifactId>com.springsource.bsh</artifactId>
79 </dependency>
80 </dependencies>
81 </project>