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> |
Jan Willem Janssen | 2a25d6e | 2013-09-13 16:02:35 +0000 | [diff] [blame] | 27 | <relativePath>../../pom/pom.xml</relativePath> |
Felix Meschberger | ae4262a | 2011-12-05 14:15:58 +0000 | [diff] [blame] | 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> |
Jan Willem Janssen | 7f58e43 | 2013-09-17 14:10:02 +0000 | [diff] [blame^] | 33 | <version>1</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 | |
Jan Willem Janssen | 7d9f9fe | 2013-09-17 13:46:15 +0000 | [diff] [blame] | 44 | <scm> |
Jan Willem Janssen | 7f58e43 | 2013-09-17 14:10:02 +0000 | [diff] [blame^] | 45 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.http-2.2.1/parent</connection> |
| 46 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.http-2.2.1/parent</developerConnection> |
| 47 | <url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.http-2.2.1/parent</url> |
Jan Willem Janssen | 7d9f9fe | 2013-09-17 13:46:15 +0000 | [diff] [blame] | 48 | </scm> |
| 49 | |
Felix Meschberger | ae4262a | 2011-12-05 14:15:58 +0000 | [diff] [blame] | 50 | <build> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <artifactId>maven-compiler-plugin</artifactId> |
| 54 | <configuration> |
| 55 | <source>1.5</source> |
| 56 | <target>1.5</target> |
| 57 | <compilerVersion>1.5</compilerVersion> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | <pluginManagement> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.felix</groupId> |
| 65 | <artifactId>maven-bundle-plugin</artifactId> |
| 66 | <version>2.3.6</version> |
| 67 | <executions> |
| 68 | <execution> |
| 69 | <id>bundle</id> |
| 70 | <phase>package</phase> |
| 71 | <goals> |
| 72 | <goal>bundle</goal> |
| 73 | </goals> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | <configuration> |
| 77 | <instructions> |
| 78 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 79 | <Bundle-Version>${project.version}</Bundle-Version> |
| 80 | </instructions> |
| 81 | </configuration> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </pluginManagement> |
| 85 | </build> |
| 86 | |
| 87 | <dependencies> |
| 88 | <dependency> |
| 89 | <groupId>junit</groupId> |
| 90 | <artifactId>junit</artifactId> |
| 91 | <version>4.8.2</version> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.mockito</groupId> |
| 96 | <artifactId>mockito-all</artifactId> |
| 97 | <version>1.8.2</version> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | </dependencies> |
| 101 | |
| 102 | <dependencyManagement> |
| 103 | <dependencies> |
| 104 | <dependency> |
| 105 | <groupId>javax.servlet</groupId> |
| 106 | <artifactId>servlet-api</artifactId> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 107 | <version>2.5</version> |
Felix Meschberger | ae4262a | 2011-12-05 14:15:58 +0000 | [diff] [blame] | 108 | <scope>provided</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.osgi</groupId> |
| 112 | <artifactId>org.osgi.core</artifactId> |
| 113 | <version>4.0.0</version> |
| 114 | <scope>provided</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.osgi</groupId> |
| 118 | <artifactId>org.osgi.compendium</artifactId> |
| 119 | <version>4.0.0</version> |
| 120 | <scope>provided</scope> |
| 121 | </dependency> |
| 122 | </dependencies> |
| 123 | </dependencyManagement> |
Felix Meschberger | ae4262a | 2011-12-05 14:15:58 +0000 | [diff] [blame] | 124 | </project> |