]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/pom.xml
Start introducing OSGi commands
[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.1-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 <groupId>org.apache.felix</groupId>
18 <artifactId>maven-bundle-plugin</artifactId>
19 <version>1.4.3</version>
20 <extensions>true</extensions>
21 <configuration>
22 <manifestLocation>
23 src/main/resources/META-INF
24 </manifestLocation>
25 <instructions>
26 <Bundle-SymbolicName>
27 ${pom.artifactId}
28 </Bundle-SymbolicName>
29 <Bundle-Activator>
30 org.argeo.slc.detached.Activator
31 </Bundle-Activator>
32 <Export-Package>
33 org.argeo.slc.detached.*
34 </Export-Package>
35 <Import-Package>
36 *,
37 org.springframework.beans.factory;version="2.0",
38 org.springframework.beans.factory.support;version="2.0",
39 org.springframework.beans.factory.xml;version="2.0",
40 org.springframework.context;version="2.0",
41 org.springframework.context.support;version="2.0",
42 org.springframework.core.io;version="2.0"
43 </Import-Package>
44 </instructions>
45 </configuration>
46 </plugin>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-compiler-plugin</artifactId>
50 <configuration>
51 <source>1.3</source>
52 <target>1.3</target>
53 </configuration>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-source-plugin</artifactId>
58 </plugin>
59 </plugins>
60 </build>
61 <dependencies>
62 <dependency>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>org.osgi.core</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>org.springframework</groupId>
69 <artifactId>spring-context</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>xerces</groupId>
74 <artifactId>xercesImpl</artifactId>
75 </dependency>
76
77 <dependency>
78 <groupId>commons-io</groupId>
79 <artifactId>commons-io</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>junit</groupId>
84 <artifactId>junit</artifactId>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>log4j</groupId>
89 <artifactId>log4j</artifactId>
90 </dependency>
91 </dependencies>
92 </project>