blob: 659c5a514f1d4c1d7eebf24f1d557e2caf93bb14 [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},
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000046 org.cometd.bayeux;version=2.4.2,
47 org.cometd.bayeux.client;version=2.4.2,
48 org.cometd.client;version=2.4.2
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000049 </Export-Package>
50 <Private-Package>
51 org.apache.felix.http.base.*,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000052 org.apache.felix.http.cometd.internal
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000053 </Private-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000054 <Embed-Dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000055 cometd-java-server;inline=true,
56 cometd-java-common;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000057 jetty-util;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000058 </Embed-Dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000059 </instructions>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64
65 <dependencies>
66 <dependency>
67 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.core</artifactId>
69 <scope>provided</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.osgi</groupId>
73 <artifactId>org.osgi.compendium</artifactId>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
77 <groupId>javax.servlet</groupId>
78 <artifactId>servlet-api</artifactId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000079 <scope>provided</scope>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000080 </dependency>
81 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000082 <groupId>org.eclipse.jetty</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000083 <artifactId>jetty-util</artifactId>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000084 <version>7.6.3.v20120416</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000085 </dependency>
86 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000087 <groupId>org.cometd.java</groupId>
88 <artifactId>cometd-java-server</artifactId>
89 <version>2.4.2</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000090 </dependency>
91 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000092 <groupId>org.cometd.java</groupId>
93 <artifactId>cometd-java-client</artifactId>
94 <version>2.4.2</version>
95 </dependency>
96 <dependency>
97 <groupId>org.cometd.java</groupId>
98 <artifactId>cometd-java-common</artifactId>
99 <version>2.4.2</version>
100 </dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000101 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000102 <groupId>org.cometd.java</groupId>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000103 <artifactId>bayeux-api</artifactId>
104 <version>2.4.2</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000105 </dependency>
106 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000107 <groupId>${project.groupId}</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000108 <artifactId>org.apache.felix.http.base</artifactId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000109 <version>${project.version}</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000110 </dependency>
111 </dependencies>
112
113</project>