Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 24 | <artifactId>org.apache.felix.http.parent</artifactId> |
Carsten Ziegeler | 0bfffa6 | 2015-03-05 09:12:21 +0000 | [diff] [blame] | 25 | <version>6</version> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 26 | <relativePath>../parent/pom.xml</relativePath> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <name>Apache Felix Http Cometd</name> |
| 30 | <artifactId>org.apache.felix.http.cometd</artifactId> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 31 | <version>2.4.0-SNAPSHOT</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 32 | <packaging>jar</packaging> |
| 33 | |
Jan Willem Janssen | 7d9f9fe | 2013-09-17 13:46:15 +0000 | [diff] [blame] | 34 | <scm> |
Jan Willem Janssen | 43fa9c7 | 2014-11-05 09:44:40 +0000 | [diff] [blame] | 35 | <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 Janssen | 7d9f9fe | 2013-09-17 13:46:15 +0000 | [diff] [blame] | 38 | </scm> |
| 39 | |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 40 | <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 Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 51 | org.apache.felix.http.cometd;version=${project.version}, |
Jan Willem Janssen | 13d8854 | 2014-02-12 13:32:48 +0000 | [diff] [blame] | 52 | 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 Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 55 | </Export-Package> |
| 56 | <Private-Package> |
| 57 | org.apache.felix.http.base.*, |
Jan Willem Janssen | 13d8854 | 2014-02-12 13:32:48 +0000 | [diff] [blame] | 58 | org.apache.felix.http.cometd.internal, |
| 59 | org.cometd.server.*;-split-package:=merge-first, |
| 60 | org.cometd.common.*;-split-package:=merge-first |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 61 | </Private-Package> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 62 | <Embed-Dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 63 | cometd-java-server;inline=true, |
| 64 | cometd-java-common;inline=true, |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 65 | jetty-util;inline=true, |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 66 | </Embed-Dependency> |
Jan Willem Janssen | 13d8854 | 2014-02-12 13:32:48 +0000 | [diff] [blame] | 67 | <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 Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 77 | </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 Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 96 | <artifactId>javax.servlet-api</artifactId> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 97 | <scope>provided</scope> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 98 | </dependency> |
| 99 | <dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 100 | <groupId>org.eclipse.jetty</groupId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 101 | <artifactId>jetty-util</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 102 | <version>${jetty.version}</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 103 | </dependency> |
| 104 | <dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 105 | <groupId>org.cometd.java</groupId> |
| 106 | <artifactId>cometd-java-server</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 107 | <version>${cometd.version}</version> |
Jan Willem Janssen | db13c6a | 2014-03-10 13:44:23 +0000 | [diff] [blame] | 108 | <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 Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 120 | <groupId>org.cometd.java</groupId> |
| 121 | <artifactId>cometd-java-client</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 122 | <version>${cometd.version}</version> |
Jan Willem Janssen | db13c6a | 2014-03-10 13:44:23 +0000 | [diff] [blame] | 123 | <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 Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>org.cometd.java</groupId> |
| 140 | <artifactId>cometd-java-common</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 141 | <version>${cometd.version}</version> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 142 | </dependency> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 143 | <dependency> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 144 | <groupId>org.cometd.java</groupId> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 145 | <artifactId>bayeux-api</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 146 | <version>${cometd.version}</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 147 | </dependency> |
| 148 | <dependency> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 149 | <groupId>${project.groupId}</groupId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 150 | <artifactId>org.apache.felix.http.base</artifactId> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 151 | <version>[2.4.0-SNAPSHOT,2.5)</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 152 | </dependency> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 153 | |
Jan Willem Janssen | db13c6a | 2014-03-10 13:44:23 +0000 | [diff] [blame] | 154 | <!-- 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 Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 185 | </project> |