]> git.argeo.org Git - lgpl/argeo-commons.git/blob - base/runtime/org.argeo.eclipse.ui/pom.xml
b37c5952afbc69fbe9008282a5588e2ec2fc7b42
[lgpl/argeo-commons.git] / base / runtime / org.argeo.eclipse.ui / 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>2.1.10-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
30 <configuration>
31 <instructions>
32 <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
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 <!-- JCR -->
51 <dependency>
52 <groupId>org.argeo.tp</groupId>
53 <artifactId>javax.jcr</artifactId>
54 </dependency>
55
56 <!-- RCP only dependency, needed at compile time -->
57 <dependency>
58 <groupId>org.argeo.commons.base</groupId>
59 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
60 <version>2.1.10-SNAPSHOT</version>
61 <scope>provided</scope>
62 </dependency>
63
64 <!-- Commons -->
65 <dependency>
66 <groupId>org.argeo.commons.base</groupId>
67 <artifactId>org.argeo.util</artifactId>
68 <version>2.1.10-SNAPSHOT</version>
69 </dependency>
70
71 <!-- Spring -->
72 <dependency>
73 <groupId>org.argeo.tp</groupId>
74 <artifactId>org.springframework.context</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.argeo.tp</groupId>
78 <artifactId>org.springframework.osgi.extender</artifactId>
79 </dependency>
80
81 <!-- Others -->
82 <dependency>
83 <groupId>org.argeo.tp</groupId>
84 <artifactId>slf4j.org.apache.commons.logging</artifactId>
85 </dependency>
86
87 </dependencies>
88 </project>