Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 1 | <!-- |
| 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" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
| 25 | <groupId>org.apache.felix</groupId> |
| 26 | <artifactId>felix-parent</artifactId> |
| 27 | <version>1.2.0</version> |
Sten Roger Sandvik | f52abb8 | 2009-09-14 10:42:08 +0000 | [diff] [blame] | 28 | <relativePath>../pom/pom.xml</relativePath> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>org.apache.felix.http</artifactId> |
| 32 | <packaging>pom</packaging> |
| 33 | <name>Apache Felix Http</name> |
| 34 | <version>2.0.0-SNAPSHOT</version> |
| 35 | |
| 36 | <properties> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 38 | </properties> |
| 39 | |
| 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <artifactId>maven-compiler-plugin</artifactId> |
| 44 | <configuration> |
| 45 | <source>1.5</source> |
| 46 | <target>1.5</target> |
| 47 | <compilerVersion>1.5</compilerVersion> |
| 48 | </configuration> |
| 49 | </plugin> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>maven-bundle-plugin</artifactId> |
| 53 | <version>2.0.0</version> |
| 54 | <extensions>true</extensions> |
| 55 | <configuration> |
| 56 | <instructions> |
| 57 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 58 | <Bundle-Version>${pom.version}</Bundle-Version> |
| 59 | </instructions> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | |
| 65 | <modules> |
| 66 | <module>api</module> |
| 67 | <module>base</module> |
| 68 | <module>bridge</module> |
| 69 | <module>jetty</module> |
| 70 | <module>proxy</module> |
| 71 | <module>whiteboard</module> |
| 72 | <module>bundle</module> |
Sten Roger Sandvik | 4cbab06 | 2009-09-26 13:11:48 +0000 | [diff] [blame^] | 73 | <module>samples/filter</module> |
| 74 | <module>samples/bridge</module> |
| 75 | <module>samples/whiteboard</module> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 76 | </modules> |
| 77 | |
| 78 | <dependencies> |
| 79 | <dependency> |
| 80 | <groupId>junit</groupId> |
| 81 | <artifactId>junit</artifactId> |
| 82 | <version>4.5</version> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>org.mockito</groupId> |
| 87 | <artifactId>mockito-all</artifactId> |
| 88 | <version>1.8.0</version> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | </dependencies> |
| 92 | |
| 93 | <dependencyManagement> |
| 94 | <dependencies> |
| 95 | <dependency> |
| 96 | <groupId>javax.servlet</groupId> |
| 97 | <artifactId>servlet-api</artifactId> |
| 98 | <version>2.5</version> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.apache.felix</groupId> |
| 102 | <artifactId>org.osgi.core</artifactId> |
| 103 | <version>1.2.0</version> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.apache.felix</groupId> |
| 107 | <artifactId>org.osgi.foundation</artifactId> |
| 108 | <version>1.2.0</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.apache.felix</groupId> |
| 112 | <artifactId>org.osgi.compendium</artifactId> |
| 113 | <version>1.2.0</version> |
| 114 | <exclusions> |
| 115 | <exclusion> |
| 116 | <groupId>org.apache.felix</groupId> |
| 117 | <artifactId>javax.servlet</artifactId> |
| 118 | </exclusion> |
| 119 | </exclusions> |
| 120 | </dependency> |
| 121 | </dependencies> |
| 122 | </dependencyManagement> |
Sten Roger Sandvik | 4cbab06 | 2009-09-26 13:11:48 +0000 | [diff] [blame^] | 123 | |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 124 | </project> |