]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.autoui/pom.xml
Introduce detached execution server.
[gpl/argeo-slc.git] / org.argeo.slc.autoui / 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.autoui</artifactId>
12 <name>SLC Auto UI</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>src/main/resources/META-INF</manifestLocation>
24 <instructions>
25 <Bundle-SymbolicName>
26 ${pom.artifactId}
27 </Bundle-SymbolicName>
28 <Bundle-Activator>
29 org.argeo.slc.autoui.AutoUiActivator
30 </Bundle-Activator>
31 <Export-Package>
32 org.argeo.slc.autoui.*
33 </Export-Package>
34 </instructions>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-compiler-plugin</artifactId>
40 <configuration>
41 <source>1.3</source>
42 <target>1.3</target>
43 </configuration>
44 </plugin>
45 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-source-plugin</artifactId>
48 </plugin>
49 </plugins>
50 </build>
51 <dependencies>
52 <dependency>
53 <groupId>org.eclipse</groupId>
54 <artifactId>osgi</artifactId>
55 <version>3.3.0-v20070530</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.springframework</groupId>
60 <artifactId>spring-context</artifactId>
61 <version>2.0.8</version>
62 </dependency>
63
64 <dependency>
65 <groupId>org.codehaus.castor</groupId>
66 <artifactId>castor</artifactId>
67 </dependency>
68 </dependencies>
69 </project>