blob: e1c5b974a5c2b35bffd2c9407ae08d94c2c368bb [file] [log] [blame]
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +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-->
Sten Roger Sandvikdad7a6d2009-09-28 20:30:00 +000019<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">
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>felix-parent</artifactId>
26 <version>1.2.0</version>
Sten Roger Sandvik65cdce82009-09-14 10:42:08 +000027 <relativePath>../pom/pom.xml</relativePath>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000028 </parent>
29
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000030 <groupId>org.apache.felix</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000031 <artifactId>org.apache.felix.http</artifactId>
32 <packaging>pom</packaging>
33 <name>Apache Felix Http</name>
Felix Meschbergera3009b52011-01-26 14:51:56 +000034 <version>2.2.1-SNAPSHOT</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000035
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000036 <prerequisites>
37 <maven>2.0.7</maven>
38 </prerequisites>
Richard S. Hall5e039312009-10-01 08:35:18 +000039
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000040 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 </properties>
43
44 <build>
Felix Meschberger903f17d2011-01-26 14:48:49 +000045 <resources>
46 <resource>
47 <directory>${basedir}/src/main/resources</directory>
48 </resource>
49 <resource>
50 <targetPath>META-INF</targetPath>
51 <directory>${basedir}</directory>
52 <includes>
53 <include>LICENSE</include>
54 <include>NOTICE</include>
55 <include>DEPENDENCIES</include>
56 </includes>
57 </resource>
58 </resources>
59 <plugins>
60 <plugin>
61 <artifactId>maven-compiler-plugin</artifactId>
62 <configuration>
63 <source>1.5</source>
64 <target>1.5</target>
65 <compilerVersion>1.5</compilerVersion>
66 </configuration>
67 </plugin>
68 </plugins>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000069 <pluginManagement>
70 <plugins>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000071 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000074 <version>2.0.1</version>
75 <executions>
76 <execution>
77 <id>bundle</id>
78 <phase>package</phase>
79 <goals>
80 <goal>bundle</goal>
81 </goals>
82 </execution>
83 </executions>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000084 <configuration>
85 <instructions>
86 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
87 <Bundle-Version>${pom.version}</Bundle-Version>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000088 </instructions>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000089 </configuration>
90 </plugin>
91 </plugins>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000092 </pluginManagement>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000093 </build>
94
95 <modules>
96 <module>api</module>
97 <module>base</module>
98 <module>bridge</module>
99 <module>jetty</module>
100 <module>proxy</module>
101 <module>whiteboard</module>
Timothy Michael Moloney1dbedaa2011-03-04 01:56:24 +0000102 <module>cometd</module>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000103 <module>bundle</module>
Sten Roger Sandvika006c962009-09-26 13:11:48 +0000104 <module>samples/filter</module>
105 <module>samples/bridge</module>
106 <module>samples/whiteboard</module>
Timothy Michael Moloney1dbedaa2011-03-04 01:56:24 +0000107 <module>samples/cometd</module>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000108 </modules>
109
110 <dependencies>
111 <dependency>
112 <groupId>junit</groupId>
113 <artifactId>junit</artifactId>
114 <version>4.5</version>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.mockito</groupId>
119 <artifactId>mockito-all</artifactId>
120 <version>1.8.0</version>
121 <scope>test</scope>
122 </dependency>
123 </dependencies>
124
125 <dependencyManagement>
126 <dependencies>
127 <dependency>
128 <groupId>javax.servlet</groupId>
129 <artifactId>servlet-api</artifactId>
130 <version>2.5</version>
131 </dependency>
132 <dependency>
Richard S. Hall01012fc2009-10-01 08:55:33 +0000133 <groupId>org.osgi</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000134 <artifactId>org.osgi.core</artifactId>
Richard S. Hall01012fc2009-10-01 08:55:33 +0000135 <version>4.0.0</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000136 </dependency>
137 <dependency>
Richard S. Hall01012fc2009-10-01 08:55:33 +0000138 <groupId>org.osgi</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000139 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hall01012fc2009-10-01 08:55:33 +0000140 <version>4.0.0</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000141 </dependency>
142 </dependencies>
143 </dependencyManagement>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000144</project>