]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/runtime/org.argeo.eclipse.ui.rcp/pom.xml
Fix issue with empty description in OpenLDAP
[lgpl/argeo-commons.git] / eclipse / runtime / org.argeo.eclipse.ui.rcp / 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.rcp</artifactId>
11 <name>Commons Eclipse UI RCP</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,org.eclipse.core.runtime</Require-Bundle>
36 <Import-Package>
37 org.springframework.beans.factory,
38 org.springframework.core.io.support,
39 org.apache.commons.io,
40 org.argeo,
41 !org.eclipse.core.runtime,
42 !org.eclipse.core.commands,
43 !org.eclipse.ui.plugin,
44 *
45 </Import-Package>
46 </instructions>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51 <dependencies>
52 <!-- Argeo Commons for Eclipse (not specific) -->
53 <dependency>
54 <groupId>org.argeo.commons.eclipse</groupId>
55 <artifactId>org.argeo.eclipse.ui</artifactId>
56 <version>0.2.3-SNAPSHOT</version>
57 </dependency>
58
59 <!-- Argeo Commons third party distribution for RCP projects -->
60 <dependency>
61 <groupId>org.argeo.commons.eclipse</groupId>
62 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
63 <version>${version.argeo-commons}</version>
64 </dependency>
65
66
67 <dependency>
68 <groupId>org.argeo.commons.basic</groupId>
69 <artifactId>org.argeo.basic.nodeps</artifactId>
70 <version>0.2.3-SNAPSHOT</version>
71 </dependency>
72
73 <!-- Others. -->
74 <dependency>
75 <groupId>org.apache.commons</groupId>
76 <artifactId>com.springsource.org.apache.commons.io</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>