]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui.rcp/pom.xml
CMS and RAP launch definitions
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui.rcp / 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.rcp</artifactId>
12 <name>Commons Eclipse UI RCP</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.ui,org.eclipse.core.runtime</Require-Bundle>
37 <Import-Package>
38 org.springframework.beans.factory,
39 org.springframework.core.io.support,
40 org.apache.commons.io,
41 org.argeo,
42 !org.eclipse.core.runtime,
43 !org.eclipse.core.commands,
44 !org.eclipse.ui.plugin,
45 *
46 </Import-Package>
47 </instructions>
48 </configuration>
49 </plugin>
50 </plugins>
51 </build>
52 <dependencies>
53 <!-- Argeo Commons for Eclipse (not specific) -->
54 <dependency>
55 <groupId>org.argeo.commons</groupId>
56 <artifactId>org.argeo.eclipse.ui</artifactId>
57 <version>2.1.12-SNAPSHOT</version>
58 </dependency>
59
60 <!-- Argeo Commons third party distribution for RCP projects -->
61 <dependency>
62 <groupId>org.argeo.commons</groupId>
63 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
64 <type>pom</type>
65 <version>2.1.12-SNAPSHOT</version>
66 </dependency>
67
68
69 <dependency>
70 <groupId>org.argeo.commons</groupId>
71 <artifactId>org.argeo.util</artifactId>
72 <version>2.1.12-SNAPSHOT</version>
73 </dependency>
74
75 <!-- Others. -->
76 <dependency>
77 <groupId>org.argeo.tp</groupId>
78 <artifactId>org.apache.commons.io</artifactId>
79 </dependency>
80
81 <!-- Logging -->
82 <dependency>
83 <groupId>org.argeo.tp</groupId>
84 <artifactId>slf4j.org.apache.commons.logging</artifactId>
85 </dependency>
86 </dependencies>
87 </project>