blob: 11e3a31a9afce0d9f06c5a875d8440c3d61e3eaf [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 Ziegeler28733aa2015-08-10 06:53:16 +000018 <version>7</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 Ziegelera3cf4902015-06-24 20:07:42 +000034 <felix.java.version>7</felix.java.version>
35 <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.api.version>3.0.1-SNAPSHOT</http.api.version>
38 <http.servlet.api.version>1.1.3-SNAPSHOT</http.servlet.api.version>
39 <http.jetty.version>3.1.1-SNAPSHOT</http.jetty.version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000040 </properties>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000041
Carsten Ziegeler680e5872015-06-25 14:45:05 +000042 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-surefire-plugin</artifactId>
47 <configuration>
48 <systemPropertyVariables>
49 <http.api.version>${http.api.version}</http.api.version>
50 <http.servlet.api.version>${http.servlet.api.version}</http.servlet.api.version>
51 <http.jetty.version>${http.jetty.version}</http.jetty.version>
52 </systemPropertyVariables>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000057 <dependencies>
58 <dependency>
59 <groupId>org.osgi</groupId>
Carsten Ziegeleredbeca02015-08-05 23:04:00 +000060 <artifactId>osgi.core</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000061 </dependency>
Carsten Ziegeler14877e52015-05-26 16:18:47 +000062 <dependency>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000063 <groupId>org.osgi</groupId>
Carsten Ziegeleredbeca02015-08-05 23:04:00 +000064 <artifactId>osgi.cmpn</artifactId>
Carsten Ziegeler14877e52015-05-26 16:18:47 +000065 </dependency>
66 <dependency>
67 <groupId>org.apache.httpcomponents</groupId>
68 <artifactId>httpcore-osgi</artifactId>
69 <version>4.3.2</version>
70 <scope>provided</scope>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000071 </dependency>
Carsten Ziegeler14877e52015-05-26 16:18:47 +000072 <dependency>
73 <groupId>org.apache.httpcomponents</groupId>
74 <artifactId>httpclient-osgi</artifactId>
75 <version>4.3.4</version>
76 <scope>provided</scope>
77 </dependency>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000078 <dependency>
79 <groupId>com.googlecode.json-simple</groupId>
80 <artifactId>json-simple</artifactId>
81 <version>1.1.1</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000082 <scope>provided</scope>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000083 </dependency>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000084 <dependency>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000085 <groupId>org.apache.felix</groupId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000086 <artifactId>org.apache.felix.http.api</artifactId>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000087 <version>${http.api.version}</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000088 </dependency>
89 <dependency>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000090 <groupId>org.apache.felix</groupId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000091 <artifactId>org.apache.felix.http.servlet-api</artifactId>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000092 <version>${http.servlet.api.version}</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000093 </dependency>
94 <dependency>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000095 <groupId>org.apache.felix</groupId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000096 <artifactId>org.apache.felix.http.jetty</artifactId>
Carsten Ziegeler680e5872015-06-25 14:45:05 +000097 <version>${http.jetty.version}</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000098 </dependency>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +000099 <dependency>
100 <groupId>org.ops4j.pax.exam</groupId>
101 <artifactId>pax-exam-container-forked</artifactId>
102 <version>${pax.exam.version}</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.ops4j.pax.exam</groupId>
107 <artifactId>pax-exam-junit4</artifactId>
108 <version>${pax.exam.version}</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
112 <groupId>org.ops4j.pax.exam</groupId>
113 <artifactId>pax-exam-link-mvn</artifactId>
114 <version>${pax.exam.version}</version>
115 <scope>test</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.objenesis</groupId>
119 <artifactId>objenesis</artifactId>
120 <version>2.1</version>
121 <scope>test</scope>
122 </dependency>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000123
Carsten Ziegelera3cf4902015-06-24 20:07:42 +0000124 <dependency>
125 <groupId>org.ops4j.pax.url</groupId>
126 <artifactId>pax-url-aether</artifactId>
127 <version>${pax.url.aether.version}</version>
128 <scope>test</scope>
129 </dependency>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000130 <dependency>
131 <groupId>javax.inject</groupId>
132 <artifactId>javax.inject</artifactId>
133 <version>1</version>
134 <scope>test</scope>
135 </dependency>
136 <dependency>
137 <groupId>org.apache.felix</groupId>
138 <artifactId>org.apache.felix.framework</artifactId>
Carsten Ziegelera3cf4902015-06-24 20:07:42 +0000139 <version>5.0.1</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000140 <scope>test</scope>
141 </dependency>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +0000142 </dependencies>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000143</project>