]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui/pom.xml
Fix execution spec node added twice
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui / 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.slc</groupId>
5 <artifactId>plugins</artifactId>
6 <version>1.1.12-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.client.ui</artifactId>
10 <name>SLC Client UI</name>
11 <packaging>jar</packaging>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <configuration>
18 <instructions>
19 <Bundle-Activator>org.argeo.slc.client.ui.ClientUiPlugin</Bundle-Activator>
20 <Require-Bundle>
21 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
25 </Require-Bundle>
26 <Import-Package>
27 org.argeo.eclipse.spring,
28 *
29 </Import-Package>
30 </instructions>
31 </configuration>
32 </plugin>
33 </plugins>
34 </build>
35 <dependencies>
36 <!-- SLC -->
37 <dependency>
38 <groupId>org.argeo.slc</groupId>
39 <artifactId>org.argeo.slc.core</artifactId>
40 <version>1.1.12-SNAPSHOT</version>
41 </dependency>
42 <dependency>
43 <groupId>org.argeo.slc</groupId>
44 <artifactId>org.argeo.slc.support.jcr</artifactId>
45 <version>1.1.12-SNAPSHOT</version>
46 </dependency>
47
48 <!-- Argeo Eclipse -->
49 <dependency>
50 <groupId>org.argeo.commons.base</groupId>
51 <artifactId>org.argeo.eclipse.ui</artifactId>
52 <version>${version.argeo-commons}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.argeo.commons.base</groupId>
56 <artifactId>org.argeo.eclipse.ui.jcr</artifactId>
57 <version>${version.argeo-commons}</version>
58 </dependency>
59
60 <!-- Eclipse and RCP only dependency, needed at compile time -->
61 <dependency>
62 <groupId>org.argeo.commons.base</groupId>
63 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
64 <version>${version.argeo-commons}</version>
65 <scope>provided</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.commons.base</groupId>
69 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
70 <version>${version.argeo-commons}</version>
71 <scope>provided</scope>
72 </dependency>
73 </dependencies>
74 </project>