]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.autoui/pom.xml
Centralize Spring initialization
[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>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 <!--
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>commons-logging</groupId>
59 <artifactId>commons-logging</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>log4j</groupId>
63 <artifactId>log4j</artifactId>
64 </dependency>
65 -->
66
67 <!-- OSGi
68 <dependency>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>org.osgi.core</artifactId>
71 <version>1.0.0</version>
72 </dependency>
73 -->
74 <dependency>
75 <groupId>org.eclipse</groupId>
76 <artifactId>osgi</artifactId>
77 <version>3.3.0-v20070530</version>
78 </dependency>
79
80 <dependency>
81 <groupId>org.springframework</groupId>
82 <artifactId>spring-context</artifactId>
83 <version>2.0.8</version>
84 </dependency>
85
86
87 </dependencies>
88 </project>