blob: 1d4c2d114536992ce39ce314ddbe425fb936b38c [file] [log] [blame]
Sten Roger Sandvik5af73c22009-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 Sandvikee4dd852009-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 Sandvik5af73c22009-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 Sandvikf52abb82009-09-14 10:42:08 +000027 <relativePath>../pom/pom.xml</relativePath>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000028 </parent>
29
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000030 <groupId>org.apache.felix</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000031 <artifactId>org.apache.felix.http</artifactId>
32 <packaging>pom</packaging>
33 <name>Apache Felix Http</name>
Felix Meschberger6e8e0e92011-01-26 14:51:56 +000034 <version>2.2.1-SNAPSHOT</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000035
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000036 <prerequisites>
37 <maven>2.0.7</maven>
38 </prerequisites>
Richard S. Halle8afc4f2009-10-01 08:35:18 +000039
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000040 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 </properties>
43
44 <build>
Felix Meschberger42b0e9c2011-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 Sandvikb61405d2009-09-28 20:23:26 +000069 <pluginManagement>
70 <plugins>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000071 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
Sten Roger Sandvikb61405d2009-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 Sandvik5af73c22009-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 Sandvikb61405d2009-09-28 20:23:26 +000088 </instructions>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000089 </configuration>
90 </plugin>
91 </plugins>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000092 </pluginManagement>
Sten Roger Sandvik5af73c22009-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>
102 <module>bundle</module>
Sten Roger Sandvik4cbab062009-09-26 13:11:48 +0000103 <module>samples/filter</module>
104 <module>samples/bridge</module>
105 <module>samples/whiteboard</module>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000106 </modules>
107
108 <dependencies>
109 <dependency>
110 <groupId>junit</groupId>
111 <artifactId>junit</artifactId>
112 <version>4.5</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.mockito</groupId>
117 <artifactId>mockito-all</artifactId>
118 <version>1.8.0</version>
119 <scope>test</scope>
120 </dependency>
121 </dependencies>
122
123 <dependencyManagement>
124 <dependencies>
125 <dependency>
126 <groupId>javax.servlet</groupId>
127 <artifactId>servlet-api</artifactId>
128 <version>2.5</version>
129 </dependency>
130 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +0000131 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000132 <artifactId>org.osgi.core</artifactId>
Richard S. Hall4b262302009-10-01 08:55:33 +0000133 <version>4.0.0</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000134 </dependency>
135 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +0000136 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000137 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hall4b262302009-10-01 08:55:33 +0000138 <version>4.0.0</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000139 </dependency>
140 </dependencies>
141 </dependencyManagement>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000142</project>