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