blob: b7556c6a1c4257f02cdcbadf16203b84a5ff195f [file] [log] [blame]
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
19<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">
20
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
Carsten Ziegeler430c7982015-02-02 08:34:34 +000025 <version>5</version>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000026 <relativePath>../parent/pom.xml</relativePath>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000027 </parent>
28
29 <name>Apache Felix Http Cometd</name>
30 <artifactId>org.apache.felix.http.cometd</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000031 <version>2.4.0-SNAPSHOT</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000032 <packaging>jar</packaging>
33
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000034 <scm>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/cometd</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/cometd</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/cometd/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <configuration>
46 <instructions>
47 <Bundle-Activator>
48 org.apache.felix.http.cometd.internal.CometdActivator
49 </Bundle-Activator>
50 <Export-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000051 org.apache.felix.http.cometd;version=${project.version},
Jan Willem Janssen13d88542014-02-12 13:32:48 +000052 org.cometd.bayeux;version=${cometd.version};-split-package:=merge-first,
53 org.cometd.bayeux.client;version=${cometd.version};-split-package:=merge-first,
54 org.cometd.bayeux.server;version=${cometd.version};-split-package:=merge-first,
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000055 </Export-Package>
56 <Private-Package>
57 org.apache.felix.http.base.*,
Jan Willem Janssen13d88542014-02-12 13:32:48 +000058 org.apache.felix.http.cometd.internal,
59 org.cometd.server.*;-split-package:=merge-first,
60 org.cometd.common.*;-split-package:=merge-first
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000061 </Private-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000062 <Embed-Dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000063 cometd-java-server;inline=true,
64 cometd-java-common;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000065 jetty-util;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000066 </Embed-Dependency>
Jan Willem Janssen13d88542014-02-12 13:32:48 +000067 <Import-Package>
68 javax.imageio;resolution:=optional,
69 org.slf4j.*;resolution:=optional,
70 org.osgi.service.useradmin;resolution:=optional,
71 org.codehaus.jackson.map;resolution:=optional,
72 org.codehaus.jackson.type;resolution:=optional,
73 org.eclipse.jetty.continuation;version="[7.6,9)",
74 org.eclipse.jetty.jmx;version="[7.6,9)",
75 *
76 </Import-Package>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000077 </instructions>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82
83 <dependencies>
84 <dependency>
85 <groupId>org.osgi</groupId>
86 <artifactId>org.osgi.core</artifactId>
87 <scope>provided</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.osgi</groupId>
91 <artifactId>org.osgi.compendium</artifactId>
92 <scope>provided</scope>
93 </dependency>
94 <dependency>
95 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000096 <artifactId>javax.servlet-api</artifactId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000097 <scope>provided</scope>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000098 </dependency>
99 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000100 <groupId>org.eclipse.jetty</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000101 <artifactId>jetty-util</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000102 <version>${jetty.version}</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000103 </dependency>
104 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000105 <groupId>org.cometd.java</groupId>
106 <artifactId>cometd-java-server</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000107 <version>${cometd.version}</version>
Jan Willem Janssendb13c6a2014-03-10 13:44:23 +0000108 <exclusions>
109 <exclusion>
110 <groupId>org.eclipse.jetty</groupId>
111 <artifactId>jetty-continuation</artifactId>
112 </exclusion>
113 <exclusion>
114 <groupId>org.eclipse.jetty</groupId>
115 <artifactId>jetty-jmx</artifactId>
116 </exclusion>
117 </exclusions>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000118 </dependency>
119 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000120 <groupId>org.cometd.java</groupId>
121 <artifactId>cometd-java-client</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000122 <version>${cometd.version}</version>
Jan Willem Janssendb13c6a2014-03-10 13:44:23 +0000123 <exclusions>
124 <exclusion>
125 <groupId>org.eclipse.jetty</groupId>
126 <artifactId>jetty-client</artifactId>
127 </exclusion>
128 <exclusion>
129 <groupId>org.eclipse.jetty</groupId>
130 <artifactId>jetty-io</artifactId>
131 </exclusion>
132 <exclusion>
133 <groupId>org.eclipse.jetty</groupId>
134 <artifactId>jetty-http</artifactId>
135 </exclusion>
136 </exclusions>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000137 </dependency>
138 <dependency>
139 <groupId>org.cometd.java</groupId>
140 <artifactId>cometd-java-common</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000141 <version>${cometd.version}</version>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000142 </dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000143 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000144 <groupId>org.cometd.java</groupId>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000145 <artifactId>bayeux-api</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000146 <version>${cometd.version}</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000147 </dependency>
148 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000149 <groupId>${project.groupId}</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000150 <artifactId>org.apache.felix.http.base</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +0000151 <version>[2.4.0-SNAPSHOT,2.5)</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000152 </dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000153
Jan Willem Janssendb13c6a2014-03-10 13:44:23 +0000154 <!-- The dependencies below are newer versions of the transitive
155 Jetty dependencies pulled in by cometd. It should be able to
156 remove these once the cometd dependencies on Jetty line up
157 with the ones that the Felix Http Service project uses. -->
158 <dependency>
159 <groupId>org.eclipse.jetty</groupId>
160 <artifactId>jetty-client</artifactId>
161 <version>${jetty.version}</version>
162 </dependency>
163 <dependency>
164 <groupId>org.eclipse.jetty</groupId>
165 <artifactId>jetty-continuation</artifactId>
166 <version>${jetty.version}</version>
167 </dependency>
168 <dependency>
169 <groupId>org.eclipse.jetty</groupId>
170 <artifactId>jetty-http</artifactId>
171 <version>${jetty.version}</version>
172 </dependency>
173 <dependency>
174 <groupId>org.eclipse.jetty</groupId>
175 <artifactId>jetty-io</artifactId>
176 <version>${jetty.version}</version>
177 </dependency>
178 <dependency>
179 <groupId>org.eclipse.jetty</groupId>
180 <artifactId>jetty-jmx</artifactId>
181 <version>${jetty.version}</version>
182 </dependency>
183
184 </dependencies>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000185</project>