]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.rap/pom.xml
68c4ff15cf2cbecf8425b60ef6a86276b849e216
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.rap / 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.19-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.slc.client.rap</artifactId>
10 <name>SLC Client RAP</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.rap.SlcRapPlugin</Bundle-Activator>
20 <Require-Bundle>org.eclipse.rap.ui;resolution:=optional</Require-Bundle>
21 <Import-Package>
22 javax.jcr.nodetype,
23 javax.servlet,
24 javax.servlet.http,
25 org.argeo.eclipse.spring,
26 org.argeo.slc.repo.core,
27 *
28 </Import-Package>
29 </instructions>
30 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34 <dependencies>
35 <!-- SLC -->
36 <dependency>
37 <groupId>org.argeo.slc</groupId>
38 <artifactId>org.argeo.slc.repo</artifactId>
39 <version>1.1.19-SNAPSHOT</version>
40 </dependency>
41
42 <!-- Argeo common distribution for RAP projects -->
43 <dependency>
44 <groupId>org.argeo.commons.base</groupId>
45 <artifactId>org.argeo.eclipse.dep.rap</artifactId>
46 <version>${version.argeo-commons}</version>
47 <exclusions>
48 <exclusion>
49 <groupId>org.mortbay.jetty</groupId>
50 <artifactId>org.mortbay.jetty.server</artifactId>
51 </exclusion>
52 <exclusion>
53 <groupId>org.mortbay.jetty</groupId>
54 <artifactId>org.mortbay.jetty.server.util</artifactId>
55 </exclusion>
56 <exclusion>
57 <groupId>org.eclipse.equinox</groupId>
58 <artifactId>org.eclipse.equinox.http.jetty</artifactId>
59 </exclusion>
60 </exclusions>
61 </dependency>
62
63 <!-- Argeo common distribution for Secured UI -->
64 <dependency>
65 <groupId>org.argeo.commons.security</groupId>
66 <artifactId>org.argeo.security.ui.rap</artifactId>
67 <version>${version.argeo-commons}</version>
68 </dependency>
69 </dependencies>
70 </project>