]> 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 <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.2.3-SNAPSHOT</version>
7 <artifactId>runtime</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.eclipse.ui.rap</artifactId>
11 <name>Commons Eclipse UI RAP</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-ActivationPolicy>lazy</Bundle-ActivationPolicy>
34 <Bundle-Activator>org.argeo.eclipse.ui.ArgeoUiPlugin</Bundle-Activator>
35 <Require-Bundle>org.eclipse.rap.ui,org.eclipse.rwt.widgets.upload,org.eclipse.core.runtime</Require-Bundle>
36 <!-- IMPORTANT : Note that we must exclude certain packages that are
37 provided by dependencies to be sure that packages used in the current workspace
38 are those provided by the require-bundles. Especially rwt.widgets.upload
39 by instance. -->
40 <Import-Package>
41 org.apache.commons.io,
42 org.argeo,
43 org.springframework.beans.factory,
44 org.springframework.core.io.support,
45 !org.eclipse.rwt.widgets,
46 !org.eclipse.core.runtime,
47 !org.eclipse.core.commands,
48 !org.eclipse.ui.plugin,
49 *
50 </Import-Package>
51 </instructions>
52 </configuration>
53 </plugin>
54 </plugins>
55 </build>
56
57 <!-- deleted from import package : javax.servlet, javax.servlet.http,org.argeo.eclipse.ui.dialogs,
58 org.eclipse.jface.dialogs, -->
59 <dependencies>
60 <!-- Argeo Commons for Eclipse (not specific) -->
61 <dependency>
62 <groupId>org.argeo.commons.eclipse</groupId>
63 <artifactId>org.argeo.eclipse.ui</artifactId>
64 <version>0.2.3-SNAPSHOT</version>
65 </dependency>
66
67 <!-- Argeo common distribution for RAP projects -->
68 <dependency>
69 <groupId>org.argeo.commons.eclipse</groupId>
70 <artifactId>org.argeo.eclipse.dep.rap</artifactId>
71 <version>${version.argeo-commons}</version>
72 </dependency>
73
74 <dependency>
75 <groupId>org.argeo.dep.rap</groupId>
76 <artifactId>org.eclipse.rwt.widgets.upload</artifactId>
77 </dependency>
78
79 <!-- Logging -->
80 <dependency>
81 <groupId>org.slf4j</groupId>
82 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
83 </dependency>
84 </dependencies>
85 </project>