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