blob: 34a8c4b353dec3074d55d507347a5a433c2c18e2 [file] [log] [blame]
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +00001<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
2 license agreements. See the NOTICE file distributed with this work for additional
3 information regarding copyright ownership. The ASF licenses this file to
4 you under the Apache License, Version 2.0 (the "License"); you may not use
5 this file except in compliance with the License. You may obtain a copy of
6 the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
7 by applicable law or agreed to in writing, software distributed under the
8 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
9 OF ANY KIND, either express or implied. See the License for the specific
10 language governing permissions and limitations under the License. -->
11<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000013
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000014 <modelVersion>4.0.0</modelVersion>
15 <parent>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>org.apache.felix.http.parent</artifactId>
Carsten Ziegelerd1d8ecd2016-01-06 10:28:55 +000018 <version>9-SNAPSHOT</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000019 <relativePath>../parent/pom.xml</relativePath>
20 </parent>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000021
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000022 <name>Apache Felix Http Integration Tests</name>
23 <artifactId>org.apache.felix.http.itest</artifactId>
24 <version>0.0.3-SNAPSHOT</version>
25 <packaging>jar</packaging>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000026
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000027 <scm>
28 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/sslfilter</connection>
29 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/sslfilter</developerConnection>
30 <url>http://svn.apache.org/viewvc/felix/trunk/http/sslfilter/</url>
31 </scm>
32
33 <properties>
Carsten Ziegelerf9b12d62016-01-07 07:59:41 +000034 <felix.java.version>8</felix.java.version>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000035 <pax.exam.version>4.4.0</pax.exam.version>
36 <pax.url.aether.version>2.4.1</pax.url.aether.version>
Carsten Ziegeler1fccae62015-08-05 23:18:38 +000037 <http.servlet.api.version>1.1.3-SNAPSHOT</http.servlet.api.version>
Carsten Ziegelerd1d8ecd2016-01-06 10:28:55 +000038 <http.jetty.version>3.1.7-SNAPSHOT</http.jetty.version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000039 </properties>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000040
Carsten Ziegeler680e5872015-06-25 14:45:05 +000041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-surefire-plugin</artifactId>
46 <configuration>
47 <systemPropertyVariables>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000048 <http.servlet.api.version>${http.servlet.api.version}</http.servlet.api.version>
49 <http.jetty.version>${http.jetty.version}</http.jetty.version>
50 </systemPropertyVariables>
51 </configuration>
52 </plugin>
53 </plugins>
54 </build>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000055 <dependencies>
56 <dependency>
57 <groupId>org.osgi</groupId>
Carsten Ziegeleredbeca02015-08-05 23:04:00 +000058 <artifactId>osgi.core</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000059 </dependency>
Carsten Ziegeler14877e52015-05-26 16:18:47 +000060 <dependency>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000061 <groupId>org.osgi</groupId>
Carsten Ziegeleredbeca02015-08-05 23:04:00 +000062 <artifactId>osgi.cmpn</artifactId>
Carsten Ziegeler14877e52015-05-26 16:18:47 +000063 </dependency>
64 <dependency>
65 <groupId>org.apache.httpcomponents</groupId>
66 <artifactId>httpcore-osgi</artifactId>
67 <version>4.3.2</version>
68 <scope>provided</scope>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000069 </dependency>
Carsten Ziegeler14877e52015-05-26 16:18:47 +000070 <dependency>
71 <groupId>org.apache.httpcomponents</groupId>
72 <artifactId>httpclient-osgi</artifactId>
73 <version>4.3.4</version>
74 <scope>provided</scope>
75 </dependency>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000076 <dependency>
77 <groupId>com.googlecode.json-simple</groupId>
78 <artifactId>json-simple</artifactId>
79 <version>1.1.1</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000080 <scope>provided</scope>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000081 </dependency>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000082 <dependency>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000083 <groupId>org.apache.felix</groupId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000084 <artifactId>org.apache.felix.http.servlet-api</artifactId>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000085 <version>${http.servlet.api.version}</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000086 </dependency>
87 <dependency>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000088 <groupId>org.apache.felix</groupId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000089 <artifactId>org.apache.felix.http.jetty</artifactId>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000090 <version>${http.jetty.version}</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000091 </dependency>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000092 <dependency>
93 <groupId>org.ops4j.pax.exam</groupId>
94 <artifactId>pax-exam-container-forked</artifactId>
95 <version>${pax.exam.version}</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.ops4j.pax.exam</groupId>
100 <artifactId>pax-exam-junit4</artifactId>
101 <version>${pax.exam.version}</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.ops4j.pax.exam</groupId>
106 <artifactId>pax-exam-link-mvn</artifactId>
107 <version>${pax.exam.version}</version>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.objenesis</groupId>
112 <artifactId>objenesis</artifactId>
113 <version>2.1</version>
114 <scope>test</scope>
115 </dependency>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000116
Carsten Ziegelera3cf4902015-06-24 20:07:42 +0000117 <dependency>
118 <groupId>org.ops4j.pax.url</groupId>
119 <artifactId>pax-url-aether</artifactId>
120 <version>${pax.url.aether.version}</version>
121 <scope>test</scope>
122 </dependency>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000123 <dependency>
124 <groupId>javax.inject</groupId>
125 <artifactId>javax.inject</artifactId>
126 <version>1</version>
127 <scope>test</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.felix</groupId>
131 <artifactId>org.apache.felix.framework</artifactId>
Carsten Ziegeler516c63e2015-09-02 08:06:53 +0000132 <version>5.2.0</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000133 <scope>test</scope>
134 </dependency>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +0000135 </dependencies>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000136</project>