blob: 6e785a1b1c1a7ea452eaa6ead8ff3e123191350e [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>
Jan Willem Janssen35d63a02013-09-17 14:33:22 +000025 <version>1</version>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000026 <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>
Jan Willem Janssen35d63a02013-09-17 14:33:22 +000031 <version>2.2.1</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000032 <packaging>jar</packaging>
33
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000034 <scm>
Jan Willem Janssen35d63a02013-09-17 14:33:22 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.http-2.2.1/cometd</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.http-2.2.1/cometd</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.http-2.2.1/cometd</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <configuration>
46 <instructions>
47 <Bundle-Activator>
48 org.apache.felix.http.cometd.internal.CometdActivator
49 </Bundle-Activator>
50 <Export-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000051 org.apache.felix.http.cometd;version=${project.version},
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000052 org.cometd.bayeux;version=2.4.2,
53 org.cometd.bayeux.client;version=2.4.2,
54 org.cometd.client;version=2.4.2
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000055 </Export-Package>
56 <Private-Package>
57 org.apache.felix.http.base.*,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000058 org.apache.felix.http.cometd.internal
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000059 </Private-Package>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000060 <Embed-Dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000061 cometd-java-server;inline=true,
62 cometd-java-common;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000063 jetty-util;inline=true,
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000064 </Embed-Dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000065 </instructions>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70
71 <dependencies>
72 <dependency>
73 <groupId>org.osgi</groupId>
74 <artifactId>org.osgi.core</artifactId>
75 <scope>provided</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.osgi</groupId>
79 <artifactId>org.osgi.compendium</artifactId>
80 <scope>provided</scope>
81 </dependency>
82 <dependency>
83 <groupId>javax.servlet</groupId>
84 <artifactId>servlet-api</artifactId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000085 <scope>provided</scope>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000086 </dependency>
87 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000088 <groupId>org.eclipse.jetty</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000089 <artifactId>jetty-util</artifactId>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000090 <version>7.6.3.v20120416</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000091 </dependency>
92 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000093 <groupId>org.cometd.java</groupId>
94 <artifactId>cometd-java-server</artifactId>
95 <version>2.4.2</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000096 </dependency>
97 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000098 <groupId>org.cometd.java</groupId>
99 <artifactId>cometd-java-client</artifactId>
100 <version>2.4.2</version>
101 </dependency>
102 <dependency>
103 <groupId>org.cometd.java</groupId>
104 <artifactId>cometd-java-common</artifactId>
105 <version>2.4.2</version>
106 </dependency>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000107 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000108 <groupId>org.cometd.java</groupId>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000109 <artifactId>bayeux-api</artifactId>
110 <version>2.4.2</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000111 </dependency>
112 <dependency>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000113 <groupId>${project.groupId}</groupId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000114 <artifactId>org.apache.felix.http.base</artifactId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +0000115 <version>${project.version}</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +0000116 </dependency>
117 </dependencies>
118
119</project>