]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
29e94fc0b6af0587c82ee5b55bd8cfa618e9c193
[lgpl/argeo-commons.git] / 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</artifactId>
12 <name>Commons Eclipse UI</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-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
35 <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
36 <Bundle-Activator>org.argeo.eclipse.ui.ArgeoUiPlugin</Bundle-Activator>
37 <Require-Bundle>org.eclipse.ui;resolution:=optional,org.eclipse.rap.ui;resolution:=optional,org.eclipse.core.runtime</Require-Bundle>
38 <Import-Package>
39 org.springframework.beans.factory,
40 org.springframework.core.io.support,
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 <!-- JCR -->
53 <dependency>
54 <groupId>org.argeo.commons</groupId>
55 <artifactId>org.argeo.server.jcr</artifactId>
56 <version>2.1.12-SNAPSHOT</version>
57 </dependency>
58
59 <!-- RCP only dependency, needed at compile time -->
60 <dependency>
61 <groupId>org.argeo.commons</groupId>
62 <artifactId>org.argeo.eclipse.dep.rap</artifactId>
63 <type>pom</type>
64 <version>2.1.12-SNAPSHOT</version>
65 <scope>provided</scope>
66 </dependency>
67
68 <!-- Commons -->
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 <!-- Spring -->
76 <dependency>
77 <groupId>org.argeo.tp</groupId>
78 <artifactId>org.springframework.context</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.argeo.tp</groupId>
82 <artifactId>org.springframework.osgi.extender</artifactId>
83 </dependency>
84
85 <!-- Others -->
86 <dependency>
87 <groupId>org.argeo.tp</groupId>
88 <artifactId>slf4j.org.apache.commons.logging</artifactId>
89 </dependency>
90
91 </dependencies>
92 </project>