]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
4c526a48e39bedd2044c2223ec7b908bb7aada57
[gpl/argeo-slc.git] / 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>junit</groupId>
54 <artifactId>junit</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.eclipse</groupId>
58 <artifactId>osgi</artifactId>
59 <version>3.3.0-v20070530</version>
60 </dependency>
61
62 <dependency>
63 <groupId>org.springframework</groupId>
64 <artifactId>spring-context</artifactId>
65 <version>2.0.8</version>
66 </dependency>
67
68 <dependency>
69 <groupId>org.codehaus.castor</groupId>
70 <artifactId>castor</artifactId>
71 </dependency>
72 </dependencies>
73 </project>