]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.jcr.ui.explorer/pom.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / org.argeo.jcr.ui.explorer / 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.server</groupId>
6 <version>0.3.5-SNAPSHOT</version>
7 <artifactId>plugins</artifactId>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.jcr.ui.explorer</artifactId>
11 <name>Commons JCR Explorer</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <configuration>
18 <instructions>
19 <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
20 <Bundle-Localization>plugin</Bundle-Localization>
21 <Bundle-Activator>org.argeo.jcr.ui.explorer.JcrExplorerPlugin</Bundle-Activator>
22 <Require-Bundle>org.eclipse.ui;resolution:=optional,
23 org.eclipse.core.runtime;resolution:=optional,
24 org.eclipse.rap.ui;resolution:=optional,
25 org.eclipse.rap.ui.workbench;resolution:=optional</Require-Bundle>
26 <Import-Package>
27 *,
28 org.argeo.eclipse.spring,
29 </Import-Package>
30 <Export-Package>org.argeo.jcr.ui.explorer.*</Export-Package>
31 </instructions>
32 </configuration>
33 </plugin>
34 </plugins>
35 </build>
36 <dependencies>
37 <dependency>
38 <groupId>org.argeo.commons.eclipse</groupId>
39 <artifactId>org.argeo.eclipse.ui.jcr</artifactId>
40 <version>0.3.5-SNAPSHOT</version>
41 </dependency>
42
43 <!-- RCP only dependency, needed at compile time -->
44 <dependency>
45 <groupId>org.argeo.commons.eclipse</groupId>
46 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
47 <version>0.3.5-SNAPSHOT</version>
48 <scope>provided</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.argeo.commons.eclipse</groupId>
52 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
53 <version>0.3.5-SNAPSHOT</version>
54 <scope>provided</scope>
55 </dependency>
56 </dependencies>
57 </project>