]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/runtime/org.argeo.eclipse.ui.rap/pom.xml
Adapt OSGi service script to EL5
[lgpl/argeo-commons.git] / eclipse / runtime / org.argeo.eclipse.ui.rap / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.commons.eclipse</groupId>
5 <version>0.3.4-SNAPSHOT</version>
6 <artifactId>runtime</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.eclipse.ui.rap</artifactId>
10 <name>Commons Eclipse UI RAP</name>
11 <packaging>jar</packaging>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-source-plugin</artifactId>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
29 <version>${version.maven-bundle-plugin}</version>
30 <configuration>
31 <instructions>
32 <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
33 <Bundle-Activator>org.argeo.eclipse.ui.ArgeoUiPlugin</Bundle-Activator>
34 <Require-Bundle>org.eclipse.rap.ui,org.eclipse.rwt.widgets.upload,org.eclipse.core.runtime</Require-Bundle>
35 <!-- IMPORTANT : Note that we must exclude certain packages that are
36 provided by dependencies to be sure that packages used in the current workspace
37 are those provided by the require-bundles. Especially rwt.widgets.upload
38 by instance. -->
39 <Import-Package>
40 org.apache.commons.io,
41 org.argeo,
42 org.springframework.beans.factory,
43 org.springframework.core.io.support,
44 !org.eclipse.rwt.widgets,
45 !org.eclipse.core.runtime,
46 !org.eclipse.core.commands,
47 !org.eclipse.ui.plugin,
48 *
49 </Import-Package>
50 </instructions>
51 </configuration>
52 </plugin>
53 </plugins>
54 </build>
55
56 <!-- deleted from import package : javax.servlet, javax.servlet.http,org.argeo.eclipse.ui.dialogs,
57 org.eclipse.jface.dialogs, -->
58 <dependencies>
59 <!-- Argeo Commons for Eclipse (not specific) -->
60 <dependency>
61 <groupId>org.argeo.commons.eclipse</groupId>
62 <artifactId>org.argeo.eclipse.ui</artifactId>
63 <version>0.3.4-SNAPSHOT</version>
64 </dependency>
65
66 <!-- Argeo common distribution for RAP projects -->
67 <dependency>
68 <groupId>org.argeo.commons.eclipse</groupId>
69 <artifactId>org.argeo.eclipse.dep.rap</artifactId>
70 <version>0.3.4-SNAPSHOT</version>
71 </dependency>
72
73 <dependency>
74 <groupId>org.argeo.dep.rap</groupId>
75 <artifactId>org.eclipse.rwt.widgets.upload</artifactId>
76 </dependency>
77
78 <!-- Logging -->
79 <dependency>
80 <groupId>org.slf4j</groupId>
81 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
82 </dependency>
83 </dependencies>
84 </project>