blob: b717fdf1c8cbb710270b8097d2b1d76fa3ca9d40 [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 Ziegeler28733aa2015-08-10 06:53:16 +000025 <version>7</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>
Carsten Ziegelerb3b019a2015-09-02 08:10:41 +000031 <version>3.0.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
Carsten Ziegelerb3b019a2015-09-02 08:10:41 +000040 <properties>
41 <felix.java.version>7</felix.java.version>
42 </properties>
43
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000044 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
49 <configuration>
50 <instructions>
51 <Bundle-Activator>
52 org.apache.felix.http.cometd.internal.CometdActivator
53 </Bundle-Activator>
54 <Export-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000055 org.apache.felix.http.cometd;version=${project.version},
Jan Willem Janssen13d88542014-02-12 13:32:48 +000056 org.cometd.bayeux;version=${cometd.version};-split-package:=merge-first,
57 org.cometd.bayeux.client;version=${cometd.version};-split-package:=merge-first,
58 org.cometd.bayeux.server;version=${cometd.version};-split-package:=merge-first,
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000059 </Export-Package>
60 <Private-Package>
61 org.apache.felix.http.base.*,
Jan Willem Janssen13d88542014-02-12 13:32:48 +000062 org.apache.felix.http.cometd.internal,
63 org.cometd.server.*;-split-package:=merge-first,
64 org.cometd.common.*;-split-package:=merge-first
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000065 </Private-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000066 <Embed-Dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000067 cometd-java-server;inline=true,
68 cometd-java-common;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000069 jetty-util;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000070 </Embed-Dependency>
Jan Willem Janssen13d88542014-02-12 13:32:48 +000071 <Import-Package>
72 javax.imageio;resolution:=optional,
73 org.slf4j.*;resolution:=optional,
74 org.osgi.service.useradmin;resolution:=optional,
75 org.codehaus.jackson.map;resolution:=optional,
76 org.codehaus.jackson.type;resolution:=optional,
77 org.eclipse.jetty.continuation;version="[7.6,9)",
78 org.eclipse.jetty.jmx;version="[7.6,9)",
79 *
80 </Import-Package>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000081 </instructions>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86
87 <dependencies>
88 <dependency>
89 <groupId>org.osgi</groupId>
Carsten Ziegeler17737142015-08-14 13:51:29 +000090 <artifactId>osgi.core</artifactId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000091 </dependency>
92 <dependency>
93 <groupId>org.osgi</groupId>
Carsten Ziegeler17737142015-08-14 13:51:29 +000094 <artifactId>osgi.cmpn</artifactId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000095 </dependency>
96 <dependency>
97 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000098 <artifactId>javax.servlet-api</artifactId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000099 </dependency>
100 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000101 <groupId>org.eclipse.jetty</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000102 <artifactId>jetty-util</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000103 <version>${jetty.version}</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000104 </dependency>
105 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000106 <groupId>org.cometd.java</groupId>
107 <artifactId>cometd-java-server</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000108 <version>${cometd.version}</version>
Jan Willem Janssendb13c6a2014-03-10 13:44:23 +0000109 <exclusions>
110 <exclusion>
111 <groupId>org.eclipse.jetty</groupId>
112 <artifactId>jetty-continuation</artifactId>
113 </exclusion>
114 <exclusion>
115 <groupId>org.eclipse.jetty</groupId>
116 <artifactId>jetty-jmx</artifactId>
117 </exclusion>
118 </exclusions>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000119 </dependency>
120 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000121 <groupId>org.cometd.java</groupId>
122 <artifactId>cometd-java-client</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000123 <version>${cometd.version}</version>
Jan Willem Janssendb13c6a2014-03-10 13:44:23 +0000124 <exclusions>
125 <exclusion>
126 <groupId>org.eclipse.jetty</groupId>
127 <artifactId>jetty-client</artifactId>
128 </exclusion>
129 <exclusion>
130 <groupId>org.eclipse.jetty</groupId>
131 <artifactId>jetty-io</artifactId>
132 </exclusion>
133 <exclusion>
134 <groupId>org.eclipse.jetty</groupId>
135 <artifactId>jetty-http</artifactId>
136 </exclusion>
137 </exclusions>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000138 </dependency>
139 <dependency>
140 <groupId>org.cometd.java</groupId>
141 <artifactId>cometd-java-common</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000142 <version>${cometd.version}</version>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000143 </dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000144 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000145 <groupId>org.cometd.java</groupId>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000146 <artifactId>bayeux-api</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000147 <version>${cometd.version}</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000148 </dependency>
149 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000150 <groupId>${project.groupId}</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000151 <artifactId>org.apache.felix.http.base</artifactId>
Carsten Ziegeler28733aa2015-08-10 06:53:16 +0000152 <version>3.0.0</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000153 </dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000154
Jan Willem Janssendb13c6a2014-03-10 13:44:23 +0000155 <!-- The dependencies below are newer versions of the transitive
156 Jetty dependencies pulled in by cometd. It should be able to
157 remove these once the cometd dependencies on Jetty line up
158 with the ones that the Felix Http Service project uses. -->
159 <dependency>
160 <groupId>org.eclipse.jetty</groupId>
161 <artifactId>jetty-client</artifactId>
162 <version>${jetty.version}</version>
163 </dependency>
164 <dependency>
165 <groupId>org.eclipse.jetty</groupId>
166 <artifactId>jetty-continuation</artifactId>
167 <version>${jetty.version}</version>
168 </dependency>
169 <dependency>
170 <groupId>org.eclipse.jetty</groupId>
171 <artifactId>jetty-http</artifactId>
172 <version>${jetty.version}</version>
173 </dependency>
174 <dependency>
175 <groupId>org.eclipse.jetty</groupId>
176 <artifactId>jetty-io</artifactId>
177 <version>${jetty.version}</version>
178 </dependency>
179 <dependency>
180 <groupId>org.eclipse.jetty</groupId>
181 <artifactId>jetty-jmx</artifactId>
182 <version>${jetty.version}</version>
183 </dependency>
184
185 </dependencies>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000186</project>