blob: 90e037fd464a6b4f305ea53e52a671e8ab0aaa7b [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>
25 <version>1-SNAPSHOT</version>
26 <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>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000031 <version>2.2.1-SNAPSHOT</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000032 <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 Meschberger26d5ccd2011-09-23 13:38:57 +000045 org.apache.felix.http.cometd;version=${project.version},
46 org.cometd;version=1.1.4
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000047 </Export-Package>
48 <Private-Package>
49 org.apache.felix.http.base.*,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000050 org.apache.felix.http.cometd.internal
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000051 </Private-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000052 <Embed-Dependency>
53 cometd-jetty;inline=true,
54 jetty-util;inline=true,
55 jetty-util5;inline=true
56 </Embed-Dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000057 </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 Meschberger26d5ccd2011-09-23 13:38:57 +000077 <scope>provided</scope>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000078 </dependency>
79 <dependency>
80 <groupId>org.mortbay.jetty</groupId>
81 <artifactId>jetty-util</artifactId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000082 <version>6.1.26</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000083 </dependency>
84 <dependency>
85 <groupId>org.mortbay.jetty</groupId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000086 <artifactId>jetty-util5</artifactId>
87 <version>6.1.26</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000088 </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 Meschberger26d5ccd2011-09-23 13:38:57 +000095 <groupId>org.cometd.java</groupId>
96 <artifactId>cometd-api</artifactId>
97 <version>1.1.4</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000098 </dependency>
99 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000100 <groupId>${project.groupId}</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000101 <artifactId>org.apache.felix.http.base</artifactId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000102 <version>${project.version}</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000103 </dependency>
104 </dependencies>
105
106</project>