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