]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.maven/pom.xml
SlcExecution persistence
[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</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.maven</artifactId>
12 <packaging>jar</packaging>
13 <name>Argeo SLC Support Maven</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.maven.*
41 </Export-Package>
42 <Import-Package>*,org.codehaus.plexus</Import-Package>
43 <Fragment-Host>org.argeo.dep.osgi.maven.embedder</Fragment-Host>
44 </instructions>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49 <dependencies>
50 <dependency>
51 <groupId>org.argeo.slc.runtime</groupId>
52 <artifactId>org.argeo.slc.specs</artifactId>
53 </dependency>
54
55 <dependency>
56 <groupId>org.springframework</groupId>
57 <artifactId>org.springframework.beans</artifactId>
58 </dependency>
59
60 <!--
61 <dependency> <groupId>org.argeo.slc.runtime</groupId>
62 <artifactId>org.argeo.slc.support.ant</artifactId> </dependency>
63 <dependency> <groupId>org.argeo.dep.osgi</groupId>
64 <artifactId>org.argeo.dep.osgi.maven.embedder</artifactId>
65 <version>2.0.4.argeo.1-SNAPSHOT</version> </dependency>
66 -->
67
68 <dependency>
69 <groupId>org.apache.commons</groupId>
70 <artifactId>com.springsource.org.apache.commons.io</artifactId>
71 </dependency>
72
73 <dependency>
74 <groupId>org.slf4j</groupId>
75 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
76 </dependency>
77
78 <!--
79 <dependency> <groupId>org.apache.maven</groupId>
80 <artifactId>maven-embedder</artifactId> <version>2.0.4</version>
81 <optional>true</optional> <exclusions> <exclusion>
82 <groupId>commons-logging</groupId>
83 <artifactId>commons-logging</artifactId> </exclusion> </exclusions>
84 </dependency>
85 -->
86 </dependencies>
87 </project>