]> git.argeo.org Git - lgpl/argeo-commons.git/blob - base/plugins/org.argeo.osgi.ui.explorer/pom.xml
work on migratinf to rap 2.2. Breaks the build until we solved the Argeo Repository...
[lgpl/argeo-commons.git] / base / plugins / org.argeo.osgi.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.base</groupId>
5 <version>2.1.6-SNAPSHOT</version>
6 <artifactId>plugins</artifactId>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.osgi.ui.explorer</artifactId>
10 <name>Commons OSGi 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-Activator>org.argeo.osgi.ui.explorer.OsgiExplorerPlugin</Bundle-Activator>
20 <Require-Bundle>org.eclipse.ui;resolution:=optional,
21 org.eclipse.rap.ui;resolution:=optional,
22 org.eclipse.core.runtime</Require-Bundle>
23 <Export-Package>org.argeo.osgi.ui.explorer.*</Export-Package>
24 </instructions>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29 <dependencies>
30 <dependency>
31 <groupId>org.argeo.tp</groupId>
32 <artifactId>org.eclipse.osgi</artifactId>
33 <scope>provided</scope>
34 </dependency>
35
36 <dependency>
37 <groupId>org.argeo.commons.base</groupId>
38 <artifactId>org.argeo.eclipse.ui</artifactId>
39 <version>2.1.6-SNAPSHOT</version>
40 </dependency>
41
42 <!-- RCP only dependency, needed at compile time -->
43 <dependency>
44 <groupId>org.argeo.commons.base</groupId>
45 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
46 <version>2.1.6-SNAPSHOT</version>
47 <scope>provided</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.argeo.commons.base</groupId>
51 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
52 <version>2.1.6-SNAPSHOT</version>
53 <scope>provided</scope>
54 </dependency>
55 </dependencies>
56 </project>