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