]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui.rap/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui.rap / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><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.base</groupId>
5 <version>1.1.9-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
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 <dependency>
60 <groupId>org.argeo.commons.base</groupId>
61 <artifactId>org.argeo.util</artifactId>
62 <version>1.1.9-SNAPSHOT</version>
63 </dependency>
64
65 <!-- Argeo common distribution for RAP projects -->
66 <dependency>
67 <groupId>org.argeo.commons.base</groupId>
68 <artifactId>org.argeo.eclipse.dep.rap</artifactId>
69 <version>1.1.9-SNAPSHOT</version>
70 </dependency>
71
72 <!-- Logging -->
73 <dependency>
74 <groupId>org.argeo.tp</groupId>
75 <artifactId>slf4j.org.apache.commons.logging</artifactId>
76 </dependency>
77 </dependencies>
78 </project>