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