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