blob: 7727530bf6b02b79dd4105cb362750ffafd3a3b7 [file] [log] [blame]
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +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 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>org.apache.felix.http.parent</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000025 <version>5-SNAPSHOT</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000026 <relativePath>../parent/pom.xml</relativePath>
27 </parent>
28
29 <name>Apache Felix Http Integration Tests</name>
30 <artifactId>org.apache.felix.http.itest</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000031 <version>0.0.3-SNAPSHOT</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000032 <packaging>jar</packaging>
33
34 <scm>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/sslfilter</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/sslfilter</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/sslfilter/</url>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000038 </scm>
39
40 <properties>
Jan Willem Janssend6d2ec62014-10-28 14:03:31 +000041 <pax.exam.version>2.6.0</pax.exam.version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000042 <pax.exam.plugin.version>1.2.4</pax.exam.plugin.version>
Jan Willem Janssend6d2ec62014-10-28 14:03:31 +000043 <pax.url.aether.version>2.1.0</pax.url.aether.version>
44 <pax.swissbox.version>1.7.0</pax.swissbox.version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000045 <pax.runner.version>1.7.6</pax.runner.version>
46 </properties>
47
48 <dependencies>
49 <dependency>
50 <groupId>javax.servlet</groupId>
51 <artifactId>javax.servlet-api</artifactId>
52 <scope>provided</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.osgi</groupId>
56 <artifactId>org.osgi.core</artifactId>
57 <scope>provided</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.osgi</groupId>
61 <artifactId>org.osgi.compendium</artifactId>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.felix</groupId>
66 <artifactId>org.apache.felix.http.api</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000067 <version>2.3.3-SNAPSHOT</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000068 </dependency>
69 <dependency>
70 <groupId>org.apache.felix</groupId>
Felix Meschberger56d8ad82014-02-18 11:17:15 +000071 <artifactId>org.apache.felix.http.servlet-api</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000072 <version>1.0.2-SNAPSHOT</version>
Felix Meschberger56d8ad82014-02-18 11:17:15 +000073 </dependency>
74 <dependency>
75 <groupId>org.apache.felix</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000076 <artifactId>org.apache.felix.http.jetty</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000077 <version>2.3.3-SNAPSHOT</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000078 </dependency>
Jan Willem Janssen64d51d82014-02-12 08:25:05 +000079 <dependency>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>org.apache.felix.configadmin</artifactId>
82 <version>1.8.0</version>
83 </dependency>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000084
85 <dependency>
86 <groupId>junit</groupId>
87 <artifactId>junit</artifactId>
88 <version>4.8.2</version>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.mockito</groupId>
93 <artifactId>mockito-all</artifactId>
94 <version>1.8.2</version>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.ops4j.pax.exam</groupId>
99 <artifactId>pax-exam-junit4</artifactId>
100 <version>${pax.exam.version}</version>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.ops4j.pax.exam</groupId>
105 <artifactId>pax-exam-container-forked</artifactId>
106 <version>${pax.exam.version}</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.ops4j.pax.runner</groupId>
111 <artifactId>pax-runner-no-jcl</artifactId>
112 <version>${pax.runner.version}</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.ops4j.pax.exam</groupId>
117 <artifactId>pax-exam-link-assembly</artifactId>
118 <version>${pax.exam.version}</version>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
122 <groupId>org.ops4j.pax.exam</groupId>
123 <artifactId>pax-exam-link-mvn</artifactId>
124 <version>${pax.exam.version}</version>
125 <scope>test</scope>
126 </dependency>
127 <dependency>
128 <groupId>org.ops4j.pax.url</groupId>
129 <artifactId>pax-url-aether</artifactId>
130 <version>${pax.url.aether.version}</version>
131 <scope>test</scope>
132 </dependency>
133 <dependency>
134 <groupId>org.ops4j.pax.url</groupId>
135 <artifactId>pax-url-wrap</artifactId>
136 <version>${pax.url.aether.version}</version>
137 <scope>test</scope>
138 </dependency>
139 <dependency>
140 <groupId>javax.inject</groupId>
141 <artifactId>javax.inject</artifactId>
142 <version>1</version>
143 <scope>test</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.felix</groupId>
147 <artifactId>org.apache.felix.framework</artifactId>
Jan Willem Janssend6d2ec62014-10-28 14:03:31 +0000148 <version>4.2.1</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000149 <scope>test</scope>
150 </dependency>
151 <dependency>
152 <groupId>org.slf4j</groupId>
153 <artifactId>slf4j-simple</artifactId>
154 <version>1.6.0</version>
155 <scope>compile</scope>
156 </dependency>
157 </dependencies>
158
159 <build>
160 <plugins>
161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-compiler-plugin</artifactId>
164 <configuration>
165 <target>1.6</target>
166 <source>1.6</source>
167 </configuration>
168 </plugin>
169 <plugin>
170 <groupId>org.apache.felix</groupId>
171 <artifactId>maven-bundle-plugin</artifactId>
172 <extensions>true</extensions>
173 </plugin>
174 <plugin>
175 <groupId>org.ops4j.pax.exam</groupId>
176 <artifactId>maven-paxexam-plugin</artifactId>
Jan Willem Janssen5f734352014-11-04 12:14:37 +0000177 <version>1.2.4</version>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000178 <executions>
179 <execution>
180 <id>generate-config</id>
181 <goals>
182 <goal>generate-depends-file</goal>
183 </goals>
184 </execution>
185 </executions>
186 </plugin>
187 </plugins>
188 </build>
189
190</project>