blob: 823721b0f42af6da8836e1c311e443d11d836a87 [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>
Carsten Ziegelerd1d8ecd2016-01-06 10:28:55 +000025 <version>9-SNAPSHOT</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 Samples - Cometd</name>
30 <artifactId>org.apache.felix.http.samples.cometd</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000031 <version>2.4.0-SNAPSHOT</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 Janssen43fa9c72014-11-05 09:44:40 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/samples/cometd</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/samples/cometd</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/samples/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.samples.cometd.Activator
49 </Bundle-Activator>
50 <Private-Package>
51 org.apache.felix.http.samples.cometd.*
52 </Private-Package>
53 <Import-Package>
54 *;resolution:=optional
55 </Import-Package>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +000056 <Include-Resource>
57 {maven-resources}, {maven-dependencies},
58 src-web=src-web
59 </Include-Resource>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000060 </instructions>
61 </configuration>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-source-plugin</artifactId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000066 <executions>
67 <execution>
68 <id>attach-sources</id>
69 <goals>
70 <goal>jar</goal>
71 </goals>
72 </execution>
73 </executions>
74 </plugin>
75 </plugins>
76 </build>
77
78 <dependencies>
79 <dependency>
80 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000081 <artifactId>javax.servlet-api</artifactId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000082 </dependency>
83 <dependency>
84 <groupId>org.osgi</groupId>
Carsten Ziegelerc84d2ce2015-08-14 14:04:38 +000085 <artifactId>osgi.core</artifactId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000086 </dependency>
87 <dependency>
88 <groupId>org.osgi</groupId>
Carsten Ziegelerc84d2ce2015-08-14 14:04:38 +000089 <artifactId>osgi.cmpn</artifactId>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000090 </dependency>
91 <dependency>
Carsten Ziegelerc84d2ce2015-08-14 14:04:38 +000092 <groupId>org.apache.felix</groupId>
Felix Meschberger26d5ccd2011-09-23 13:38:57 +000093 <artifactId>org.apache.felix.http.cometd</artifactId>
Sten Roger Sandvikcff099b2015-09-24 21:12:57 +000094 <version>3.0.0-SNAPSHOT</version>
Timothy Michael Moloney2f6f1372011-03-04 01:56:24 +000095 </dependency>
96 </dependencies>
97
98</project>