blob: 1919f810112f46a3be683a5910b5352ee61ea5ed [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>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000026 <version>3</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>
Carsten Ziegeler667b96b2015-03-01 14:15:04 +000033 <version>7-SNAPSHOT</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000034 <packaging>pom</packaging>
35
36 <prerequisites>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000037 <maven>3.0.5</maven>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000038 </prerequisites>
39
40 <properties>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000041 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Carsten Ziegeler61c2c7e2015-02-28 04:40:33 +000042 <jetty.version>9.2.9.v20150224</jetty.version>
Jan Willem Janssen13d88542014-02-12 13:32:48 +000043 <cometd.version>2.8.0</cometd.version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000044 <servlet.version>3.1.0</servlet.version>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000045 <!--
46 Java API and class file compliance. This property supports
47 one of three values:
48 - 6: Java 6 (default)
49 - 7: Java 7
50 Using anything else causes the set-bundle-required-execution-environment
51 to fail the build with an exception
52 -->
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000053 <felix.java.version>6</felix.java.version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000054 </properties>
55
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000056 <scm>
Carsten Ziegeler667b96b2015-03-01 14:15:04 +000057 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/parent</connection>
58 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/parent</developerConnection>
59 <url>http://svn.apache.org/viewvc/felix/trunk/http/parent/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000060 </scm>
61
Felix Meschbergerae4262a2011-12-05 14:15:58 +000062 <build>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000063 <pluginManagement>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-bundle-plugin</artifactId>
Jan Willem Janssen16fd98c2015-01-15 15:39:00 +000068 <version>2.5.3</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000069 <executions>
70 <execution>
71 <id>bundle</id>
72 <phase>package</phase>
73 <goals>
74 <goal>bundle</goal>
75 </goals>
76 </execution>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000077 <execution>
78 <id>baseline</id>
79 <goals>
80 <goal>baseline</goal>
81 </goals>
82 </execution>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000083 </executions>
84 <configuration>
85 <instructions>
86 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
87 <Bundle-Version>${project.version}</Bundle-Version>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000088 <Bundle-RequiredExecutionEnvironment>${felix.bree}</Bundle-RequiredExecutionEnvironment>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000089 </instructions>
90 </configuration>
Carsten Ziegeler423e1bc2015-06-12 07:22:19 +000091 </plugin>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000092 </plugins>
93 </pluginManagement>
94 </build>
95
96 <dependencies>
97 <dependency>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000098 <groupId>biz.aQute</groupId>
99 <artifactId>bndlib</artifactId>
100 <version>1.50.0</version>
101 <scope>provided</scope>
102 </dependency>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000103 </dependencies>
104
105 <dependencyManagement>
106 <dependencies>
107 <dependency>
108 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000109 <artifactId>javax.servlet-api</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000110 <version>${servlet.version}</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000111 <scope>provided</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.osgi</groupId>
115 <artifactId>org.osgi.core</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000116 <version>4.2.0</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000117 <scope>provided</scope>
118 </dependency>
119 <dependency>
120 <groupId>org.osgi</groupId>
121 <artifactId>org.osgi.compendium</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000122 <version>4.2.0</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000123 <scope>provided</scope>
124 </dependency>
125 </dependencies>
126 </dependencyManagement>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000127</project>