]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.detached/pom.xml
Rename packages
[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 <description />
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.felix</groupId>
19 <artifactId>maven-bundle-plugin</artifactId>
20 <version>1.4.3</version>
21 <extensions>true</extensions>
22 <configuration>
23 <manifestLocation>
24 src/main/resources/META-INF
25 </manifestLocation>
26 <instructions>
27 <Bundle-SymbolicName>
28 ${pom.artifactId}
29 </Bundle-SymbolicName>
30 <Bundle-Activator>
31 org.argeo.slc.detached.AutoUiActivator
32 </Bundle-Activator>
33 <Export-Package>
34 org.argeo.slc.detached.*
35 </Export-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.3</source>
44 <target>1.3</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.apache.felix</groupId>
56 <artifactId>org.osgi.core</artifactId>
57 </dependency>
58
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>spring-context</artifactId>
62 <version>2.0.8</version>
63 </dependency>
64
65 <!--
66 <dependency>
67 <groupId>org.codehaus.castor</groupId>
68 <artifactId>castor</artifactId>
69 </dependency>
70 -->
71 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77 </project>