]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.maven/pom.xml
Remove dependencies to ant
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.maven / 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.runtime</groupId>
6 <artifactId>argeo-slc-runtime</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.support.maven</artifactId>
11 <packaging>jar</packaging>
12 <name>Argeo SLC Support Maven</name>
13 <build>
14 <plugins>
15 <!-- Look to parent pom for inheritances -->
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-jar-plugin</artifactId>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-source-plugin</artifactId>
27 </plugin>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-surefire-plugin</artifactId>
31 </plugin>
32 <plugin>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
35 <version>${version.maven-bundle-plugin}</version>
36 <configuration>
37 <instructions>
38 <Export-Package>
39 org.argeo.slc.maven.*
40 </Export-Package>
41 <Import-Package>*,org.codehaus.plexus</Import-Package>
42 <Fragment-Host>org.argeo.dep.osgi.maven.embedder</Fragment-Host>
43 </instructions>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48 <dependencies>
49 <dependency>
50 <groupId>org.argeo.slc.runtime</groupId>
51 <artifactId>org.argeo.slc.specs</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.springframework</groupId>
56 <artifactId>org.springframework.beans</artifactId>
57 </dependency>
58
59 <!--
60 <dependency> <groupId>org.argeo.slc.runtime</groupId>
61 <artifactId>org.argeo.slc.support.ant</artifactId> </dependency>
62 <dependency>
63 <groupId>org.argeo.dep.osgi</groupId>
64 <artifactId>org.argeo.dep.osgi.maven.embedder</artifactId>
65 <version>2.0.4.argeo.1-SNAPSHOT</version>
66 </dependency>
67 -->
68
69 <dependency>
70 <groupId>org.apache.commons</groupId>
71 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.commons</groupId>
75 <artifactId>com.springsource.org.apache.commons.io</artifactId>
76 </dependency>
77 <!--
78 <dependency> <groupId>org.apache.maven</groupId>
79 <artifactId>maven-embedder</artifactId> <version>2.0.4</version>
80 <optional>true</optional> <exclusions> <exclusion>
81 <groupId>commons-logging</groupId>
82 <artifactId>commons-logging</artifactId> </exclusion> </exclusions>
83 </dependency>
84 -->
85 </dependencies>
86 </project>