]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui.jcr/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui.jcr / 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.jcr</artifactId>
11 <name>Commons Eclipse UI JCR</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 <Require-Bundle>org.eclipse.ui;resolution:=optional,org.eclipse.rap.ui;resolution:=optional,org.eclipse.core.runtime</Require-Bundle>
35 <Import-Package>
36 org.eclipse.swt,
37 org.argeo.eclipse.ui.specific,
38 *
39 </Import-Package>
40 </instructions>
41 </configuration>
42 </plugin>
43 </plugins>
44 </build>
45 <dependencies>
46
47 <!-- Argeo Eclipse distribution (common dependencies for both RAP and RCP) -->
48 <dependency>
49 <groupId>org.argeo.commons.eclipse</groupId>
50 <artifactId>org.argeo.eclipse.dep.common</artifactId>
51 <version>0.2.3-SNAPSHOT</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.argeo.commons.eclipse</groupId>
56 <artifactId>org.argeo.eclipse.ui</artifactId>
57 <version>0.2.3-SNAPSHOT</version>
58 </dependency>
59
60 <!-- JCR -->
61 <dependency>
62 <groupId>org.argeo.dep.osgi</groupId>
63 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.argeo.commons.server</groupId>
67 <artifactId>org.argeo.server.jcr</artifactId>
68 <version>0.2.3-SNAPSHOT</version>
69 </dependency>
70
71 <!-- RCP only dependency, needed at compile time -->
72 <dependency>
73 <groupId>org.argeo.commons.eclipse</groupId>
74 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
75 <version>0.2.3-SNAPSHOT</version>
76 <scope>provided</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.argeo.commons.eclipse</groupId>
80 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
81 <version>0.2.3-SNAPSHOT</version>
82 <scope>provided</scope>
83 </dependency>
84
85 <!-- Argeo Commons -->
86 <dependency>
87 <groupId>org.argeo.commons.basic</groupId>
88 <artifactId>org.argeo.basic.nodeps</artifactId>
89 <version>0.2.3-SNAPSHOT</version>
90 </dependency>
91
92 <!-- Logging -->
93 <dependency>
94 <groupId>org.slf4j</groupId>
95 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
96 </dependency>
97 </dependencies>
98 </project>