blob: 816ea051ac1a0f97d78e2f82896a7fa5c00733fb [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>
Carsten Ziegeler85817612015-01-29 12:12:53 +000033 <version>6-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>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000041 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000042 <jetty.version>9.2.6.v20141205</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 -->
53 <http.java.version>6</http.java.version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000054 </properties>
55
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000056 <scm>
Carsten Ziegeler85817612015-01-29 12:12:53 +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>
63 <plugins>
64 <plugin>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000065 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-antrun-plugin</artifactId>
67 <executions>
68 <execution>
69 <id>set-bundle-required-execution-environment</id>
70 <goals>
71 <goal>run</goal>
72 </goals>
73 <phase>initialize</phase>
74 <configuration>
75 <exportAntProperties>true</exportAntProperties>
76 <target>
77 <script language="javascript"> <![CDATA[
78 var System = java.lang.System;
79 var bree = "J2SE-1.6";
80 var httpJavaVersion = System.getProperty("http.java.version");
81 if (!httpJavaVersion) {
82 httpJavaVersion = project.getProperty("http.java.version");
83 }
84 if (httpJavaVersion == "7") {
85 bree = "JavaSE-1.7";
86 System.out.println("Setting Bundle-RequiredExecutionEnvironment=" + bree + " from http.java.version=" + httpJavaVersion);
87 } else if (httpJavaVersion != "6") {
88 System.out.println("Unsupported http.java.version=" + httpJavaVersion + "; must be 6 or 7.");
89 throw "http.java.version must be 6 or 7";
90 }
91 project.setProperty("http.bree", bree);
92 ]]></script>
93 </target>
94 </configuration>
95 </execution>
96 </executions>
97 </plugin>
98 <plugin>
Felix Meschbergerae4262a2011-12-05 14:15:58 +000099 <artifactId>maven-compiler-plugin</artifactId>
100 <configuration>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +0000101 <source>1.${http.java.version}</source>
102 <target>1.${http.java.version}</target>
103 <compilerVersion>1.${http.java.version}</compilerVersion>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000104 </configuration>
105 </plugin>
106 </plugins>
107 <pluginManagement>
108 <plugins>
109 <plugin>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>maven-bundle-plugin</artifactId>
Jan Willem Janssen16fd98c2015-01-15 15:39:00 +0000112 <version>2.5.3</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000113 <executions>
114 <execution>
115 <id>bundle</id>
116 <phase>package</phase>
117 <goals>
118 <goal>bundle</goal>
119 </goals>
120 </execution>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +0000121 <execution>
122 <id>baseline</id>
123 <goals>
124 <goal>baseline</goal>
125 </goals>
126 </execution>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000127 </executions>
128 <configuration>
129 <instructions>
130 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
131 <Bundle-Version>${project.version}</Bundle-Version>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +0000132 <Bundle-RequiredExecutionEnvironment>${http.bree}</Bundle-RequiredExecutionEnvironment>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000133 </instructions>
134 </configuration>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +0000135 </plugin>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000136 </plugins>
137 </pluginManagement>
138 </build>
139
140 <dependencies>
141 <dependency>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +0000142 <groupId>biz.aQute</groupId>
143 <artifactId>bndlib</artifactId>
144 <version>1.50.0</version>
145 <scope>provided</scope>
146 </dependency>
147 <dependency>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000148 <groupId>junit</groupId>
149 <artifactId>junit</artifactId>
150 <version>4.8.2</version>
151 <scope>test</scope>
152 </dependency>
153 <dependency>
154 <groupId>org.mockito</groupId>
155 <artifactId>mockito-all</artifactId>
156 <version>1.8.2</version>
157 <scope>test</scope>
158 </dependency>
159 </dependencies>
160
161 <dependencyManagement>
162 <dependencies>
163 <dependency>
164 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000165 <artifactId>javax.servlet-api</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000166 <version>${servlet.version}</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000167 <scope>provided</scope>
168 </dependency>
169 <dependency>
170 <groupId>org.osgi</groupId>
171 <artifactId>org.osgi.core</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000172 <version>4.2.0</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000173 <scope>provided</scope>
174 </dependency>
175 <dependency>
176 <groupId>org.osgi</groupId>
177 <artifactId>org.osgi.compendium</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000178 <version>4.2.0</version>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000179 <scope>provided</scope>
180 </dependency>
181 </dependencies>
182 </dependencyManagement>
Felix Meschbergerae4262a2011-12-05 14:15:58 +0000183</project>