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> |
| 24 | <artifactId>org.apache.felix.http</artifactId> |
| 25 | <version>2.2.1-SNAPSHOT</version> |
| 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <name>Apache Felix Http Cometd</name> |
| 30 | <artifactId>org.apache.felix.http.cometd</artifactId> |
| 31 | <packaging>jar</packaging> |
| 32 | |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>maven-bundle-plugin</artifactId> |
| 38 | <configuration> |
| 39 | <instructions> |
| 40 | <Bundle-Activator> |
| 41 | org.apache.felix.http.cometd.internal.CometdActivator |
| 42 | </Bundle-Activator> |
| 43 | <Export-Package> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 44 | org.apache.felix.http.cometd;version=${project.version}, |
| 45 | org.cometd;version=1.1.4 |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 46 | </Export-Package> |
| 47 | <Private-Package> |
| 48 | org.apache.felix.http.base.*, |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 49 | org.apache.felix.http.cometd.internal |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 50 | </Private-Package> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 51 | <Embed-Dependency> |
| 52 | cometd-jetty;inline=true, |
| 53 | jetty-util;inline=true, |
| 54 | jetty-util5;inline=true |
| 55 | </Embed-Dependency> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 56 | </instructions> |
| 57 | </configuration> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
| 61 | |
| 62 | <dependencies> |
| 63 | <dependency> |
| 64 | <groupId>org.osgi</groupId> |
| 65 | <artifactId>org.osgi.core</artifactId> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.osgi</groupId> |
| 70 | <artifactId>org.osgi.compendium</artifactId> |
| 71 | <scope>provided</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>javax.servlet</groupId> |
| 75 | <artifactId>servlet-api</artifactId> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 76 | <scope>provided</scope> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.mortbay.jetty</groupId> |
| 80 | <artifactId>jetty-util</artifactId> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 81 | <version>6.1.26</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.mortbay.jetty</groupId> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 85 | <artifactId>jetty-util5</artifactId> |
| 86 | <version>6.1.26</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.mortbay.jetty</groupId> |
| 90 | <artifactId>cometd-jetty</artifactId> |
| 91 | <version>6.1.15</version> |
| 92 | </dependency> |
| 93 | <dependency> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 94 | <groupId>org.cometd.java</groupId> |
| 95 | <artifactId>cometd-api</artifactId> |
| 96 | <version>1.1.4</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 97 | </dependency> |
| 98 | <dependency> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 99 | <groupId>${project.groupId}</groupId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 100 | <artifactId>org.apache.felix.http.base</artifactId> |
Felix Meschberger | 26d5ccd | 2011-09-23 13:38:57 +0000 | [diff] [blame] | 101 | <version>${project.version}</version> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 102 | </dependency> |
| 103 | </dependencies> |
| 104 | |
| 105 | </project> |