]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached/pom.xml
Fix imports of WS client
[gpl/argeo-slc.git] / runtime / org.argeo.slc.detached / 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</groupId>
5 <artifactId>argeo-slc</artifactId>
6 <version>0.11.3-SNAPSHOT</version>
7 <relativePath>../../org.argeo.slc</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.detached</artifactId>
11 <name>Argeo SLC Detached</name>
12 <packaging>jar</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <artifactId>maven-jar-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>maven-bundle-plugin</artifactId>
21 <version>${version.maven-bundle-plugin}</version>
22 <configuration>
23 <instructions>
24 <Export-Package>
25 org.argeo.slc.detached.*
26 </Export-Package>
27 <Import-Package>
28 org.w3c.dom;version="0.0.0",
29 javax.xml.*;version="0.0.0",
30 org.springframework.beans.factory;version="2.0",
31 org.springframework.beans.factory.support;version="2.0",
32 org.springframework.beans.factory.xml;version="2.0",
33 org.springframework.context;version="2.0",
34 org.springframework.context.support;version="2.0",
35 org.springframework.core.io;version="2.0",
36 *
37 </Import-Package>
38 <Spring-Context>*;create-asynchronously:=false</Spring-Context>
39 </instructions>
40 </configuration>
41 </plugin>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-compiler-plugin</artifactId>
45 <configuration>
46 <source>1.4</source>
47 <target>1.4</target>
48 </configuration>
49 </plugin>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-source-plugin</artifactId>
53 </plugin>
54 </plugins>
55 </build>
56 <dependencies>
57 <dependency>
58 <groupId>org.eclipse.osgi</groupId>
59 <artifactId>org.eclipse.osgi</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.springframework.osgi</groupId>
64 <artifactId>org.springframework.osgi.extender</artifactId>
65 </dependency>
66
67 <!-- Required under JDK 1.4 -->
68 <dependency>
69 <groupId>edu.emory.mathcs.backport</groupId>
70 <artifactId>com.springsource.edu.emory.mathcs.backport</artifactId>
71 </dependency>
72
73
74 <!--
75 <dependency> <groupId>org.apache.xerces</groupId>
76 <artifactId>com.springsource.org.apache.xerces</artifactId>
77 </dependency>
78 -->
79
80 <dependency>
81 <groupId>org.apache.xmlcommons</groupId>
82 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
83 <scope>provided</scope>
84 </dependency>
85 <!--
86 <dependency> <groupId>xml-apis</groupId>
87 <artifactId>xml-apis</artifactId> <version>1.3.04</version>
88 <scope>provided</scope> </dependency>
89 -->
90
91 <dependency>
92 <groupId>org.apache.commons</groupId>
93 <artifactId>
94 com.springsource.org.apache.commons.io
95 </artifactId>
96 </dependency>
97 <dependency>
98 <groupId>org.junit</groupId>
99 <artifactId>com.springsource.junit</artifactId>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.log4j</groupId>
104 <artifactId>com.springsource.org.apache.log4j</artifactId>
105 </dependency>
106 </dependencies>
107 </project>