]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.ant/pom.xml
Upgrade equinox
[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>runtime</artifactId>
7 <version>0.11.4-SNAPSHOT</version>
8 <relativePath>..</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 <version>${version.maven-bundle-plugin}</version>
37 <configuration>
38 <instructions>
39 <Export-Package>
40 org.argeo.slc.ant.*
41 </Export-Package>
42 </instructions>
43 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47 <dependencies>
48 <dependency>
49 <groupId>org.argeo.slc.runtime</groupId>
50 <artifactId>org.argeo.slc.core</artifactId>
51 </dependency>
52
53 <dependency>
54 <groupId>org.apache.ant</groupId>
55 <artifactId>com.springsource.org.apache.tools.ant</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.ant</groupId>
59 <artifactId>com.springsource.org.apache.tools.ant.launch</artifactId>
60 <version>1.7.1</version>
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 </dependencies>
77 </project>