]> git.argeo.org Git - lgpl/argeo-commons.git/blob - base/plugins/org.argeo.osgi.ui.explorer/pom.xml
0368054ac12720663938cbe4b0b47ac0591f7270
[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>1.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 </dependency>
34
35 <dependency>
36 <groupId>org.argeo.commons.base</groupId>
37 <artifactId>org.argeo.eclipse.ui</artifactId>
38 <version>1.1.6-SNAPSHOT</version>
39 </dependency>
40
41 <!-- RCP only dependency, needed at compile time -->
42 <dependency>
43 <groupId>org.argeo.commons.base</groupId>
44 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
45 <version>1.1.6-SNAPSHOT</version>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.argeo.commons.base</groupId>
50 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
51 <version>1.1.6-SNAPSHOT</version>
52 <scope>provided</scope>
53 </dependency>
54 </dependencies>
55 </project>