]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/plugins/org.argeo.eclipse.ui/pom.xml
git-svn-id: https://svn.argeo.org/commons/trunk@4020 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc
[lgpl/argeo-commons.git] / eclipse / plugins / 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.2.2-SNAPSHOT</version>
7 <artifactId>plugins</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-ActivationPolicy>lazy</Bundle-ActivationPolicy>
34 <Bundle-Activator>org.argeo.eclipse.ui.ArgeoUiPlugin</Bundle-Activator>
35 <Require-Bundle>org.eclipse.ui;resolution:=optional,org.eclipse.rap.ui;resolution:=optional,org.eclipse.core.runtime</Require-Bundle>
36 <Import-Package>
37 org.springframework.beans.factory,
38 org.springframework.core.io.support,
39 !org.eclipse.core.runtime,
40 !org.eclipse.core.commands,
41 !org.eclipse.ui.plugin,
42 *
43 </Import-Package>
44 </instructions>
45 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49 <dependencies>
50
51 <!-- Argeo Eclipse distribution (common dependencies for both RAP and RCP) -->
52 <dependency>
53 <groupId>org.argeo.commons.eclipse</groupId>
54 <artifactId>org.argeo.eclipse.dep.common</artifactId>
55 <version>0.2.2-SNAPSHOT</version>
56 </dependency>
57
58 <!-- RCP only dependency, needed at compile time -->
59 <dependency>
60 <groupId>org.eclipse.ui</groupId>
61 <artifactId>org.eclipse.ui</artifactId>
62 <scope>provided</scope>
63 </dependency>
64
65 <!-- Commons -->
66 <dependency>
67 <groupId>org.argeo.commons.basic</groupId>
68 <artifactId>org.argeo.basic.nodeps</artifactId>
69 <version>0.2.2-SNAPSHOT</version>
70 </dependency>
71
72 <!-- Spring -->
73 <dependency>
74 <groupId>org.springframework</groupId>
75 <artifactId>org.springframework.context</artifactId>
76 </dependency>
77
78 <!-- Others -->
79 <dependency>
80 <groupId>org.slf4j</groupId>
81 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
82 </dependency>
83
84 </dependencies>
85 </project>