]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.detached/pom.xml
Fix lock bug for windows
[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>argeo-slc</artifactId>
7 <version>0.11.2-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</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 <configuration>
23 <instructions>
24 <Export-Package>
25 org.argeo.slc.detached.*
26 </Export-Package>
27 <Import-Package>
28 *,
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 </Import-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
42 <configuration>
43 <source>1.4</source>
44 <target>1.4</target>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-source-plugin</artifactId>
50 </plugin>
51 </plugins>
52 </build>
53 <dependencies>
54 <dependency>
55 <groupId>org.eclipse.osgi</groupId>
56 <artifactId>org.eclipse.osgi</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>org.springframework.osgi</groupId>
61 <artifactId>org.springframework.osgi.extender</artifactId>
62 </dependency>
63
64 <!-- Required under JDK 1.4 -->
65 <dependency>
66 <groupId>edu.emory.mathcs.backport</groupId>
67 <artifactId>com.springsource.edu.emory.mathcs.backport</artifactId>
68 </dependency>
69
70
71 <!--
72 <dependency> <groupId>org.apache.xerces</groupId>
73 <artifactId>com.springsource.org.apache.xerces</artifactId>
74 </dependency>
75 -->
76
77 <dependency>
78 <groupId>org.apache.xmlcommons</groupId>
79 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
80 <scope>provided</scope>
81 </dependency>
82 <!--
83 <dependency>
84 <groupId>xml-apis</groupId>
85 <artifactId>xml-apis</artifactId>
86 <version>1.3.04</version>
87 <scope>provided</scope>
88 </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>