]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/pom.xml
Introduce P2 provisioning
[gpl/argeo-slc.git] / org.argeo.slc.detached / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>argeo-slc</artifactId>
8 <version>0.11.2-SNAPSHOT</version>
9 <relativePath>../org.argeo.slc</relativePath>
10 </parent>
11 <artifactId>org.argeo.slc.detached</artifactId>
12 <name>Argeo SLC Detached</name>
13 <packaging>bundle</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 <Bundle-Activator>
25 org.argeo.slc.detached.Activator
26 </Bundle-Activator>
27 <Export-Package>
28 org.argeo.slc.detached.*
29 </Export-Package>
30 <Import-Package>
31 *,
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 </Import-Package>
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.3</source>
47 <target>1.3</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 <version>3.4.2.R34x_v20080826-1230</version>
61 </dependency>
62 <dependency>
63 <groupId>org.springframework</groupId>
64 <artifactId>org.springframework.context</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>org.apache.xerces</groupId>
69 <artifactId>com.springsource.org.apache.xerces</artifactId>
70 </dependency>
71
72
73 <dependency>
74 <groupId>xml-apis</groupId>
75 <artifactId>xml-apis</artifactId>
76 <version>1.3.04</version>
77 <scope>provided</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>
83 com.springsource.org.apache.commons.io
84 </artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.junit</groupId>
88 <artifactId>com.springsource.junit</artifactId>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.log4j</groupId>
93 <artifactId>com.springsource.org.apache.log4j</artifactId>
94 </dependency>
95 </dependencies>
96 </project>