]> git.argeo.org Git - lgpl/argeo-commons.git/blob - eclipse/plugins/org.argeo.eclipse.ui.jcr/pom.xml
Improve JCR UI
[lgpl/argeo-commons.git] / eclipse / plugins / 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" 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.eclipse</groupId>
5 <version>0.2.3-SNAPSHOT</version>
6 <artifactId>plugins</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.eclipse.ui.jcr</artifactId>
10 <name>Commons Eclipse UI JCR</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 <version>${version.maven-bundle-plugin}</version>
30 <configuration>
31 <instructions>
32 <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
33 <Import-Package>
34 org.eclipse.swt,
35 *
36 </Import-Package>
37 </instructions>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42 <dependencies>
43
44 <!-- Argeo Eclipse distribution (common dependencies for both RAP and RCP) -->
45 <dependency>
46 <groupId>org.argeo.commons.eclipse</groupId>
47 <artifactId>org.argeo.eclipse.dep.common</artifactId>
48 <version>0.2.3-SNAPSHOT</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.argeo.commons.eclipse</groupId>
53 <artifactId>org.argeo.eclipse.ui</artifactId>
54 <version>0.2.3-SNAPSHOT</version>
55 </dependency>
56
57 <!-- JCR -->
58 <dependency>
59 <groupId>org.argeo.dep.osgi</groupId>
60 <artifactId>org.argeo.dep.osgi.jcr</artifactId>
61 </dependency>
62
63 <!-- RCP only dependency, needed at compile time -->
64 <dependency>
65 <groupId>org.argeo.commons.eclipse</groupId>
66 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
67 <version>0.2.3-SNAPSHOT</version>
68 <scope>provided</scope>
69 </dependency>
70
71 <!-- Argeo Commons -->
72 <dependency>
73 <groupId>org.argeo.commons.basic</groupId>
74 <artifactId>org.argeo.basic.nodeps</artifactId>
75 <version>0.2.3-SNAPSHOT</version>
76 </dependency>
77
78 <!-- Logging -->
79 <dependency>
80 <groupId>org.slf4j</groupId>
81 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
82 </dependency>
83 </dependencies>
84 </project>