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