]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.rcp/pom.xml
introduce a new view to display JcrResults has a tree.
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.rcp / 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.slc</groupId>
6 <artifactId>plugins</artifactId>
7 <version>1.1.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <artifactId>org.argeo.slc.client.rcp</artifactId>
11 <name>SLC Client RCP</name>
12 <packaging>jar</packaging>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>maven-bundle-plugin</artifactId>
18 <configuration>
19 <instructions>
20 <Bundle-Activator>org.argeo.slc.client.rcp.ClientRcpPlugin</Bundle-Activator>
21 <Require-Bundle>
22 org.eclipse.ui,
23 org.eclipse.core.runtime
24 </Require-Bundle>
25 <Import-Package>
26 *,
27 </Import-Package>
28 </instructions>
29 </configuration>
30 </plugin>
31 </plugins>
32 </build>
33 <dependencies>
34 <!-- SLC -->
35 <dependency>
36 <groupId>org.argeo.slc</groupId>
37 <artifactId>org.argeo.slc.client.ui</artifactId>
38 <version>1.1.3-SNAPSHOT</version>
39 </dependency>
40
41 <!-- Bundles to start -->
42 <dependency>
43 <groupId>org.argeo.slc</groupId>
44 <artifactId>org.argeo.slc.node.jackrabbit</artifactId>
45 <version>1.1.3-SNAPSHOT</version>
46 </dependency>
47 <dependency>
48 <groupId>org.argeo.slc</groupId>
49 <artifactId>org.argeo.slc.agent</artifactId>
50 <version>1.1.3-SNAPSHOT</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.argeo.commons.security</groupId>
55 <artifactId>org.argeo.security.dao.jackrabbit</artifactId>
56 <version>${version.argeo-commons}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.argeo.commons.server</groupId>
60 <artifactId>org.argeo.node.repo.jackrabbit</artifactId>
61 <version>${version.argeo-commons}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.argeo.commons.server</groupId>
65 <artifactId>org.argeo.node.repofactory.jackrabbit</artifactId>
66 <version>${version.argeo-commons}</version>
67 </dependency>
68
69 <!-- Security UI -->
70 <dependency>
71 <groupId>org.argeo.commons.base</groupId>
72 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
73 <version>${version.argeo-commons}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.argeo.commons.security</groupId>
77 <artifactId>org.argeo.security.ui.rcp</artifactId>
78 <version>${version.argeo-commons}</version>
79 </dependency>
80 </dependencies>
81 </project>