]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.support.ant/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / 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" 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.runtime</groupId>
5 <artifactId>argeo-slc-runtime</artifactId>
6 <version>0.11.3-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.support.ant</artifactId>
10 <packaging>jar</packaging>
11 <name>Argeo SLC Support Ant</name>
12 <build>
13 <plugins>
14 <!-- Look to parent pom for inheritances -->
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-jar-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-source-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-surefire-plugin</artifactId>
30 </plugin>
31 <plugin>
32 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
34 <version>${version.maven-bundle-plugin}</version>
35 <configuration>
36 <instructions>
37 <Export-Package>
38 org.argeo.slc.ant.*
39 </Export-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45 <dependencies>
46 <dependency>
47 <groupId>org.argeo.slc.runtime</groupId>
48 <artifactId>org.argeo.slc.support.simple</artifactId>
49 </dependency>
50
51 <dependency>
52 <groupId>org.argeo.dep.osgi</groupId>
53 <artifactId>org.argeo.dep.osgi.ant</artifactId>
54 </dependency>
55
56 <dependency>
57 <groupId>org.apache.commons</groupId>
58 <artifactId>com.springsource.org.apache.commons.net</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.oro</groupId>
62 <artifactId>com.springsource.org.apache.oro</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>org.apache.bsf</groupId>
67 <artifactId>com.springsource.org.apache.bsf</artifactId>
68 </dependency>
69 </dependencies>
70 </project>