]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/runtime/org.argeo.eclipse.ui/pom.xml
Adapt OSGi service script to EL5
[lgpl/argeo-commons.git] / eclipse / runtime / org.argeo.eclipse.ui / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.commons.eclipse</groupId>
6 <version>0.3.4-SNAPSHOT</version>
7 <artifactId>runtime</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.eclipse.ui</artifactId>
11 <name>Commons Eclipse UI</name>
12 <packaging>jar</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-jar-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-bundle-plugin</artifactId>
30 <version>${version.maven-bundle-plugin}</version>
31 <configuration>
32 <instructions>
33 <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
34 <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
35 <Bundle-Activator>org.argeo.eclipse.ui.ArgeoUiPlugin</Bundle-Activator>
36 <Require-Bundle>org.eclipse.ui;resolution:=optional,org.eclipse.rap.ui;resolution:=optional,org.eclipse.core.runtime</Require-Bundle>
37 <Import-Package>
38 org.springframework.beans.factory,
39 org.springframework.core.io.support,
40 !org.eclipse.core.runtime,
41 !org.eclipse.core.commands,
42 !org.eclipse.ui.plugin,
43 *
44 </Import-Package>
45 </instructions>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51
52 <!-- Argeo Eclipse distribution (common dependencies for both RAP and RCP) -->
53 <dependency>
54 <groupId>org.argeo.commons.eclipse</groupId>
55 <artifactId>org.argeo.eclipse.dep.common</artifactId>
56 <version>0.3.4-SNAPSHOT</version>
57 </dependency>
58
59 <!-- JCR -->
60 <dependency>
61 <groupId>org.argeo.dep.osgi</groupId>
62 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
63 </dependency>
64
65 <!-- RCP only dependency, needed at compile time -->
66 <dependency>
67 <groupId>org.argeo.commons.eclipse</groupId>
68 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
69 <version>0.3.4-SNAPSHOT</version>
70 <scope>provided</scope>
71 </dependency>
72
73 <!-- Commons -->
74 <dependency>
75 <groupId>org.argeo.commons.basic</groupId>
76 <artifactId>org.argeo.basic.nodeps</artifactId>
77 <version>0.3.4-SNAPSHOT</version>
78 </dependency>
79
80 <!-- Spring -->
81 <dependency>
82 <groupId>org.springframework</groupId>
83 <artifactId>org.springframework.context</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.springframework.osgi</groupId>
87 <artifactId>org.springframework.osgi.extender</artifactId>
88 </dependency>
89
90 <!-- Others -->
91 <dependency>
92 <groupId>org.slf4j</groupId>
93 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
94 </dependency>
95
96 </dependencies>
97 </project>