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