]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/runtime/org.argeo.eclipse.ui/pom.xml
Update MANIFEST versions
[lgpl/argeo-commons.git] / eclipse / runtime / 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" 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.2.3-SNAPSHOT</version>
6 <artifactId>runtime</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.eclipse.ui</artifactId>
10 <name>Commons Eclipse UI</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.ui;resolution:=optional,org.eclipse.rap.ui;resolution:=optional,org.eclipse.core.runtime</Require-Bundle>
35 <Import-Package>
36 org.springframework.beans.factory,
37 org.springframework.core.io.support,
38 !org.eclipse.core.runtime,
39 !org.eclipse.core.commands,
40 !org.eclipse.ui.plugin,
41 *
42 </Import-Package>
43 </instructions>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48 <dependencies>
49
50 <!-- Argeo Eclipse distribution (common dependencies for both RAP and RCP) -->
51 <dependency>
52 <groupId>org.argeo.commons.eclipse</groupId>
53 <artifactId>org.argeo.eclipse.dep.common</artifactId>
54 <version>0.2.3-SNAPSHOT</version>
55 </dependency>
56
57 <!-- JCR -->
58 <dependency>
59 <groupId>org.argeo.dep.osgi</groupId>
60 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
61 </dependency>
62
63 <!-- RCP only dependency, needed at compile time -->
64 <dependency>
65 <groupId>org.argeo.commons.eclipse</groupId>
66 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
67 <version>0.2.3-SNAPSHOT</version>
68 <scope>provided</scope>
69 </dependency>
70
71 <!-- Commons -->
72 <dependency>
73 <groupId>org.argeo.commons.basic</groupId>
74 <artifactId>org.argeo.basic.nodeps</artifactId>
75 <version>0.2.3-SNAPSHOT</version>
76 </dependency>
77
78 <!-- Spring -->
79 <dependency>
80 <groupId>org.springframework</groupId>
81 <artifactId>org.springframework.context</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework.osgi</groupId>
85 <artifactId>org.springframework.osgi.extender</artifactId>
86 </dependency>
87
88 <!-- Others -->
89 <dependency>
90 <groupId>org.slf4j</groupId>
91 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
92 </dependency>
93
94 </dependencies>
95 </project>