]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui.rcp/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui.rcp / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><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.base</groupId>
5 <version>1.1.9-SNAPSHOT</version>
6 <artifactId>runtime</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
10 <name>Commons Eclipse UI RCP</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
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,org.eclipse.core.runtime</Require-Bundle>
35 <Import-Package>
36 org.springframework.beans.factory,
37 org.springframework.core.io.support,
38 org.apache.commons.io,
39 org.argeo,
40 !org.eclipse.core.runtime,
41 !org.eclipse.core.commands,
42 !org.eclipse.ui.plugin,
43 *
44 </Import-Package>
45 </instructions>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50 <dependencies>
51 <!-- Argeo Commons for Eclipse (not specific) -->
52 <dependency>
53 <groupId>org.argeo.commons.base</groupId>
54 <artifactId>org.argeo.eclipse.ui</artifactId>
55 <version>1.1.9-SNAPSHOT</version>
56 </dependency>
57
58 <!-- Argeo Commons third party distribution for RCP projects -->
59 <dependency>
60 <groupId>org.argeo.commons.base</groupId>
61 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
62 <version>1.1.9-SNAPSHOT</version>
63 </dependency>
64
65
66 <dependency>
67 <groupId>org.argeo.commons.base</groupId>
68 <artifactId>org.argeo.util</artifactId>
69 <version>1.1.9-SNAPSHOT</version>
70 </dependency>
71
72 <!-- Others. -->
73 <dependency>
74 <groupId>org.argeo.tp</groupId>
75 <artifactId>org.apache.commons.io</artifactId>
76 </dependency>
77
78 <!-- Logging -->
79 <dependency>
80 <groupId>org.argeo.tp</groupId>
81 <artifactId>slf4j.org.apache.commons.logging</artifactId>
82 </dependency>
83 </dependencies>
84 </project>