]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
65285df491840621aa93459eedf76c81747c1ca8
[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"
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 org.argeo.util.crypto,
30 </Import-Package>
31 <Export-Package>org.argeo.jcr.ui.explorer.*</Export-Package>
32 </instructions>
33 </configuration>
34 </plugin>
35 </plugins>
36 </build>
37 <dependencies>
38 <dependency>
39 <groupId>org.argeo.commons.eclipse</groupId>
40 <artifactId>org.argeo.eclipse.ui.jcr</artifactId>
41 <version>0.3.5-SNAPSHOT</version>
42 </dependency>
43
44 <!-- RCP only dependency, needed at compile time -->
45 <dependency>
46 <groupId>org.argeo.commons.eclipse</groupId>
47 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
48 <version>0.3.5-SNAPSHOT</version>
49 <scope>provided</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.commons.eclipse</groupId>
53 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
54 <version>0.3.5-SNAPSHOT</version>
55 <scope>provided</scope>
56 </dependency>
57 </dependencies>
58 </project>