]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui/pom.xml
Remove AKB from SLC
[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.15-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 org.argeo.security.ui,
29 *
30 </Import-Package>
31 </instructions>
32 </configuration>
33 </plugin>
34 </plugins>
35 </build>
36 <dependencies>
37 <!-- SLC -->
38 <dependency>
39 <groupId>org.argeo.slc</groupId>
40 <artifactId>org.argeo.slc.core</artifactId>
41 <version>1.1.15-SNAPSHOT</version>
42 </dependency>
43 <dependency>
44 <groupId>org.argeo.slc</groupId>
45 <artifactId>org.argeo.slc.support.jcr</artifactId>
46 <version>1.1.15-SNAPSHOT</version>
47 </dependency>
48
49 <!-- Argeo Commons -->
50 <dependency>
51 <groupId>org.argeo.commons.base</groupId>
52 <artifactId>org.argeo.eclipse.ui</artifactId>
53 <version>${version.argeo-commons}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.argeo.commons.base</groupId>
57 <artifactId>org.argeo.eclipse.ui.jcr</artifactId>
58 <version>${version.argeo-commons}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.argeo.commons.security</groupId>
62 <artifactId>org.argeo.security.ui</artifactId>
63 <version>${version.argeo-commons}</version>
64 </dependency>
65
66 <!-- Eclipse and RCP only dependency, needed at compile time -->
67 <dependency>
68 <groupId>org.argeo.commons.base</groupId>
69 <artifactId>org.argeo.eclipse.ui.rcp</artifactId>
70 <version>${version.argeo-commons}</version>
71 <scope>provided</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.commons.base</groupId>
75 <artifactId>org.argeo.eclipse.dep.rcp</artifactId>
76 <version>${version.argeo-commons}</version>
77 <scope>provided</scope>
78 </dependency>
79 </dependencies>
80 </project>