Felix Meschberger | ae4262a | 2011-12-05 14:15:58 +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" 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 | |
| 23 | <parent> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <artifactId>felix-parent</artifactId> |
| 26 | <version>2.1</version> |
| 27 | <relativePath>../pom/pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <name>Apache Felix Http Parent POM</name> |
| 31 | <groupId>org.apache.felix</groupId> |
| 32 | <artifactId>org.apache.felix.http.parent</artifactId> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 33 | <version>1-SNAPSHOT</version> |
Felix Meschberger | ae4262a | 2011-12-05 14:15:58 +0000 | [diff] [blame] | 34 | <packaging>pom</packaging> |
| 35 | |
| 36 | <prerequisites> |
| 37 | <maven>2.0.7</maven> |
| 38 | </prerequisites> |
| 39 | |
| 40 | <properties> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | </properties> |
| 43 | |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <artifactId>maven-compiler-plugin</artifactId> |
| 48 | <configuration> |
| 49 | <source>1.5</source> |
| 50 | <target>1.5</target> |
| 51 | <compilerVersion>1.5</compilerVersion> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | <pluginManagement> |
| 56 | <plugins> |
| 57 | <plugin> |
| 58 | <groupId>org.apache.felix</groupId> |
| 59 | <artifactId>maven-bundle-plugin</artifactId> |
| 60 | <version>2.3.6</version> |
| 61 | <executions> |
| 62 | <execution> |
| 63 | <id>bundle</id> |
| 64 | <phase>package</phase> |
| 65 | <goals> |
| 66 | <goal>bundle</goal> |
| 67 | </goals> |
| 68 | </execution> |
| 69 | </executions> |
| 70 | <configuration> |
| 71 | <instructions> |
| 72 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 73 | <Bundle-Version>${project.version}</Bundle-Version> |
| 74 | </instructions> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </pluginManagement> |
| 79 | </build> |
| 80 | |
| 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>junit</groupId> |
| 84 | <artifactId>junit</artifactId> |
| 85 | <version>4.8.2</version> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.mockito</groupId> |
| 90 | <artifactId>mockito-all</artifactId> |
| 91 | <version>1.8.2</version> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
| 94 | </dependencies> |
| 95 | |
| 96 | <dependencyManagement> |
| 97 | <dependencies> |
| 98 | <dependency> |
| 99 | <groupId>javax.servlet</groupId> |
| 100 | <artifactId>servlet-api</artifactId> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 101 | <version>2.5</version> |
Felix Meschberger | ae4262a | 2011-12-05 14:15:58 +0000 | [diff] [blame] | 102 | <scope>provided</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.osgi</groupId> |
| 106 | <artifactId>org.osgi.core</artifactId> |
| 107 | <version>4.0.0</version> |
| 108 | <scope>provided</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.osgi</groupId> |
| 112 | <artifactId>org.osgi.compendium</artifactId> |
| 113 | <version>4.0.0</version> |
| 114 | <scope>provided</scope> |
| 115 | </dependency> |
| 116 | </dependencies> |
| 117 | </dependencyManagement> |
| 118 | </project> |