blob: e62165e26ba51af0609eb2a1846d8b958438b261 [file] [log] [blame]
Felix Meschbergerae4262a2011-12-05 14:15:58 +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-->
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 Janssen2a25d6e2013-09-13 16:02:35 +000027 <relativePath>../../pom/pom.xml</relativePath>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000028 </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 Janssen43fa9c72014-11-05 09:44:40 +000033 <version>5-SNAPSHOT</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000034 <packaging>pom</packaging>
35
36 <prerequisites>
Jan Willem Janssenae0d7512014-11-04 12:04:37 +000037 <maven>2.2.1</maven>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000038 </prerequisites>
39
40 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000042 <jetty.version>8.1.14.v20131031</jetty.version>
Jan Willem Janssen13d88542014-02-12 13:32:48 +000043 <cometd.version>2.8.0</cometd.version>
Carsten Ziegeler3056da22014-08-06 06:00:49 +000044 <http.service.version>1.2.1</http.service.version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000045 <servlet.version>3.0.1</servlet.version>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +000046
47 <http.api.version>2.0.4</http.api.version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000048 </properties>
49
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000050 <scm>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000051 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/parent</connection>
52 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/parent</developerConnection>
53 <url>http://svn.apache.org/viewvc/felix/trunk/http/parent/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000054 </scm>
55
Felix Meschbergerae4262a2011-12-05 14:15:58 +000056 <build>
57 <plugins>
58 <plugin>
59 <artifactId>maven-compiler-plugin</artifactId>
60 <configuration>
61 <source>1.5</source>
62 <target>1.5</target>
63 <compilerVersion>1.5</compilerVersion>
64 </configuration>
65 </plugin>
66 </plugins>
67 <pluginManagement>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>maven-bundle-plugin</artifactId>
72 <version>2.3.6</version>
73 <executions>
74 <execution>
75 <id>bundle</id>
76 <phase>package</phase>
77 <goals>
78 <goal>bundle</goal>
79 </goals>
80 </execution>
81 </executions>
82 <configuration>
83 <instructions>
84 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
85 <Bundle-Version>${project.version}</Bundle-Version>
86 </instructions>
87 </configuration>
88 </plugin>
89 </plugins>
90 </pluginManagement>
91 </build>
92
93 <dependencies>
94 <dependency>
95 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <version>4.8.2</version>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.mockito</groupId>
102 <artifactId>mockito-all</artifactId>
103 <version>1.8.2</version>
104 <scope>test</scope>
105 </dependency>
106 </dependencies>
107
108 <dependencyManagement>
109 <dependencies>
110 <dependency>
111 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000112 <artifactId>javax.servlet-api</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000113 <version>${servlet.version}</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000114 <scope>provided</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.osgi</groupId>
118 <artifactId>org.osgi.core</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000119 <version>4.2.0</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000120 <scope>provided</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.osgi</groupId>
124 <artifactId>org.osgi.compendium</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000125 <version>4.2.0</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000126 <scope>provided</scope>
127 </dependency>
128 </dependencies>
129 </dependencyManagement>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000130</project>