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 | d1d8ecd | 2016-01-06 10:28:55 +0000 | [diff] [blame] | 25 | <version>9-SNAPSHOT</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> |
Carsten Ziegeler | b3b019a | 2015-09-02 08:10:41 +0000 | [diff] [blame] | 31 | <version>3.0.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 | |
Carsten Ziegeler | b3b019a | 2015-09-02 08:10:41 +0000 | [diff] [blame] | 40 | <properties> |
Carsten Ziegeler | f9b12d6 | 2016-01-07 07:59:41 +0000 | [diff] [blame] | 41 | <felix.java.version>8</felix.java.version> |
Carsten Ziegeler | b3b019a | 2015-09-02 08:10:41 +0000 | [diff] [blame] | 42 | </properties> |
| 43 | |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 44 | <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 Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 55 | org.apache.felix.http.cometd;version=${project.version}, |
Jan Willem Janssen | 13d8854 | 2014-02-12 13:32:48 +0000 | [diff] [blame] | 56 | 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 Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 59 | </Export-Package> |
| 60 | <Private-Package> |
| 61 | org.apache.felix.http.base.*, |
Jan Willem Janssen | 13d8854 | 2014-02-12 13:32:48 +0000 | [diff] [blame] | 62 | org.apache.felix.http.cometd.internal, |
| 63 | org.cometd.server.*;-split-package:=merge-first, |
| 64 | org.cometd.common.*;-split-package:=merge-first |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 65 | </Private-Package> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 66 | <Embed-Dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 67 | cometd-java-server;inline=true, |
| 68 | cometd-java-common;inline=true, |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 69 | jetty-util;inline=true, |
Sten Roger Sandvik | 20ae1dd | 2015-10-01 16:54:35 +0000 | [diff] [blame] | 70 | jetty-util-ajax;inline=true, |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 71 | </Embed-Dependency> |
Jan Willem Janssen | 13d8854 | 2014-02-12 13:32:48 +0000 | [diff] [blame] | 72 | <Import-Package> |
| 73 | javax.imageio;resolution:=optional, |
| 74 | org.slf4j.*;resolution:=optional, |
| 75 | org.osgi.service.useradmin;resolution:=optional, |
| 76 | org.codehaus.jackson.map;resolution:=optional, |
| 77 | org.codehaus.jackson.type;resolution:=optional, |
| 78 | org.eclipse.jetty.continuation;version="[7.6,9)", |
| 79 | org.eclipse.jetty.jmx;version="[7.6,9)", |
| 80 | * |
| 81 | </Import-Package> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 82 | </instructions> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
| 87 | |
| 88 | <dependencies> |
| 89 | <dependency> |
| 90 | <groupId>org.osgi</groupId> |
Carsten Ziegeler | 1773714 | 2015-08-14 13:51:29 +0000 | [diff] [blame] | 91 | <artifactId>osgi.core</artifactId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.osgi</groupId> |
Carsten Ziegeler | 1773714 | 2015-08-14 13:51:29 +0000 | [diff] [blame] | 95 | <artifactId>osgi.cmpn</artifactId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>javax.servlet</groupId> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 99 | <artifactId>javax.servlet-api</artifactId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 102 | <groupId>org.eclipse.jetty</groupId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 103 | <artifactId>jetty-util</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 104 | <version>${jetty.version}</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 105 | </dependency> |
| 106 | <dependency> |
Sten Roger Sandvik | 20ae1dd | 2015-10-01 16:54:35 +0000 | [diff] [blame] | 107 | <groupId>org.eclipse.jetty</groupId> |
| 108 | <artifactId>jetty-util-ajax</artifactId> |
| 109 | <version>${jetty.version}</version> |
| 110 | </dependency> |
| 111 | <dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 112 | <groupId>org.cometd.java</groupId> |
| 113 | <artifactId>cometd-java-server</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 114 | <version>${cometd.version}</version> |
Jan Willem Janssen | db13c6a | 2014-03-10 13:44:23 +0000 | [diff] [blame] | 115 | <exclusions> |
| 116 | <exclusion> |
| 117 | <groupId>org.eclipse.jetty</groupId> |
| 118 | <artifactId>jetty-continuation</artifactId> |
| 119 | </exclusion> |
| 120 | <exclusion> |
| 121 | <groupId>org.eclipse.jetty</groupId> |
| 122 | <artifactId>jetty-jmx</artifactId> |
| 123 | </exclusion> |
| 124 | </exclusions> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 125 | </dependency> |
| 126 | <dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 127 | <groupId>org.cometd.java</groupId> |
| 128 | <artifactId>cometd-java-client</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 129 | <version>${cometd.version}</version> |
Jan Willem Janssen | db13c6a | 2014-03-10 13:44:23 +0000 | [diff] [blame] | 130 | <exclusions> |
| 131 | <exclusion> |
| 132 | <groupId>org.eclipse.jetty</groupId> |
| 133 | <artifactId>jetty-client</artifactId> |
| 134 | </exclusion> |
| 135 | <exclusion> |
| 136 | <groupId>org.eclipse.jetty</groupId> |
| 137 | <artifactId>jetty-io</artifactId> |
| 138 | </exclusion> |
| 139 | <exclusion> |
| 140 | <groupId>org.eclipse.jetty</groupId> |
| 141 | <artifactId>jetty-http</artifactId> |
| 142 | </exclusion> |
| 143 | </exclusions> |
Sten Roger Sandvik | 20ae1dd | 2015-10-01 16:54:35 +0000 | [diff] [blame] | 144 | </dependency> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 145 | <dependency> |
| 146 | <groupId>org.cometd.java</groupId> |
| 147 | <artifactId>cometd-java-common</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 148 | <version>${cometd.version}</version> |
Sten Roger Sandvik | 20ae1dd | 2015-10-01 16:54:35 +0000 | [diff] [blame] | 149 | </dependency> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 150 | <dependency> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 151 | <groupId>org.cometd.java</groupId> |
Xander Uiterlinden | 6d5c106 | 2012-06-06 07:03:59 +0000 | [diff] [blame] | 152 | <artifactId>bayeux-api</artifactId> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 153 | <version>${cometd.version}</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 154 | </dependency> |
| 155 | <dependency> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 156 | <groupId>${project.groupId}</groupId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 157 | <artifactId>org.apache.felix.http.base</artifactId> |
Carsten Ziegeler | 28733aa | 2015-08-10 06:53:16 +0000 | [diff] [blame] | 158 | <version>3.0.0</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 159 | </dependency> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 160 | |
Jan Willem Janssen | db13c6a | 2014-03-10 13:44:23 +0000 | [diff] [blame] | 161 | <!-- The dependencies below are newer versions of the transitive |
| 162 | Jetty dependencies pulled in by cometd. It should be able to |
| 163 | remove these once the cometd dependencies on Jetty line up |
| 164 | with the ones that the Felix Http Service project uses. --> |
| 165 | <dependency> |
| 166 | <groupId>org.eclipse.jetty</groupId> |
| 167 | <artifactId>jetty-client</artifactId> |
| 168 | <version>${jetty.version}</version> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.eclipse.jetty</groupId> |
| 172 | <artifactId>jetty-continuation</artifactId> |
| 173 | <version>${jetty.version}</version> |
| 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>org.eclipse.jetty</groupId> |
| 177 | <artifactId>jetty-http</artifactId> |
| 178 | <version>${jetty.version}</version> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>org.eclipse.jetty</groupId> |
| 182 | <artifactId>jetty-io</artifactId> |
| 183 | <version>${jetty.version}</version> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>org.eclipse.jetty</groupId> |
| 187 | <artifactId>jetty-jmx</artifactId> |
| 188 | <version>${jetty.version}</version> |
| 189 | </dependency> |
| 190 | |
| 191 | </dependencies> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 192 | </project> |