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