]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.maven/pom.xml
git-svn-id: https://svn.argeo.org/slc/trunk@2483 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc
[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" 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.4-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.support.maven</artifactId>
10 <packaging>jar</packaging>
11 <name>Argeo SLC Support Maven</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.maven.*
39 </Export-Package>
40 <Import-Package>*,org.codehaus.plexus</Import-Package>
41 <Fragment-Host>org.argeo.dep.osgi.maven.embedder</Fragment-Host>
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.specs</artifactId>
51 </dependency>
52
53 <dependency>
54 <groupId>org.springframework</groupId>
55 <artifactId>org.springframework.beans</artifactId>
56 </dependency>
57
58 <!--
59 <dependency> <groupId>org.argeo.slc.runtime</groupId>
60 <artifactId>org.argeo.slc.support.ant</artifactId> </dependency>
61 <dependency>
62 <groupId>org.argeo.dep.osgi</groupId>
63 <artifactId>org.argeo.dep.osgi.maven.embedder</artifactId>
64 <version>2.0.4.argeo.1-SNAPSHOT</version>
65 </dependency>
66 -->
67
68 <dependency>
69 <groupId>org.apache.commons</groupId>
70 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.commons</groupId>
74 <artifactId>com.springsource.org.apache.commons.io</artifactId>
75 </dependency>
76 <!--
77 <dependency> <groupId>org.apache.maven</groupId>
78 <artifactId>maven-embedder</artifactId> <version>2.0.4</version>
79 <optional>true</optional> <exclusions> <exclusion>
80 <groupId>commons-logging</groupId>
81 <artifactId>commons-logging</artifactId> </exclusion> </exclusions>
82 </dependency>
83 -->
84 </dependencies>
85 </project>