Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 1 | <!-- |
| 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> |
| 25 | <version>3-SNAPSHOT</version> |
| 26 | <relativePath>../parent/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <name>Apache Felix Http Integration Tests</name> |
| 30 | <artifactId>org.apache.felix.http.itest</artifactId> |
| 31 | <version>0.0.1-SNAPSHOT</version> |
| 32 | <packaging>jar</packaging> |
| 33 | |
| 34 | <scm> |
| 35 | <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> |
| 38 | </scm> |
| 39 | |
| 40 | <properties> |
| 41 | <felix.http.api.version>2.3.0-SNAPSHOT</felix.http.api.version> |
| 42 | <pax.exam.version>2.4.0</pax.exam.version> |
| 43 | <pax.exam.plugin.version>1.2.4</pax.exam.plugin.version> |
| 44 | <pax.url.aether.version>1.4.0</pax.url.aether.version> |
| 45 | <pax.swissbox.version>1.3.1</pax.swissbox.version> |
| 46 | <pax.runner.version>1.7.6</pax.runner.version> |
| 47 | </properties> |
| 48 | |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>javax.servlet</groupId> |
| 52 | <artifactId>javax.servlet-api</artifactId> |
| 53 | <scope>provided</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.osgi</groupId> |
| 57 | <artifactId>org.osgi.core</artifactId> |
| 58 | <scope>provided</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.osgi</groupId> |
| 62 | <artifactId>org.osgi.compendium</artifactId> |
| 63 | <scope>provided</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.apache.felix</groupId> |
| 67 | <artifactId>org.apache.felix.http.api</artifactId> |
| 68 | <version>${felix.http.api.version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.apache.felix</groupId> |
Felix Meschberger | 56d8ad8 | 2014-02-18 11:17:15 +0000 | [diff] [blame] | 72 | <artifactId>org.apache.felix.http.servlet-api</artifactId> |
| 73 | <version>0.0.1-SNAPSHOT</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.apache.felix</groupId> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 77 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 78 | <version>${felix.http.api.version}</version> |
| 79 | </dependency> |
Jan Willem Janssen | 64d51d8 | 2014-02-12 08:25:05 +0000 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>org.apache.felix</groupId> |
| 82 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 83 | <version>1.8.0</version> |
| 84 | </dependency> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 85 | |
| 86 | <dependency> |
| 87 | <groupId>junit</groupId> |
| 88 | <artifactId>junit</artifactId> |
| 89 | <version>4.8.2</version> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.mockito</groupId> |
| 94 | <artifactId>mockito-all</artifactId> |
| 95 | <version>1.8.2</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-container-forked</artifactId> |
| 107 | <version>${pax.exam.version}</version> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.ops4j.pax.runner</groupId> |
| 112 | <artifactId>pax-runner-no-jcl</artifactId> |
| 113 | <version>${pax.runner.version}</version> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.ops4j.pax.exam</groupId> |
| 118 | <artifactId>pax-exam-link-assembly</artifactId> |
| 119 | <version>${pax.exam.version}</version> |
| 120 | <scope>test</scope> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.ops4j.pax.exam</groupId> |
| 124 | <artifactId>pax-exam-link-mvn</artifactId> |
| 125 | <version>${pax.exam.version}</version> |
| 126 | <scope>test</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.ops4j.pax.url</groupId> |
| 130 | <artifactId>pax-url-aether</artifactId> |
| 131 | <version>${pax.url.aether.version}</version> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.ops4j.pax.url</groupId> |
| 136 | <artifactId>pax-url-wrap</artifactId> |
| 137 | <version>${pax.url.aether.version}</version> |
| 138 | <scope>test</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>javax.inject</groupId> |
| 142 | <artifactId>javax.inject</artifactId> |
| 143 | <version>1</version> |
| 144 | <scope>test</scope> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>org.apache.felix</groupId> |
| 148 | <artifactId>org.apache.felix.framework</artifactId> |
| 149 | <version>4.0.2</version> |
| 150 | <scope>test</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.slf4j</groupId> |
| 154 | <artifactId>slf4j-simple</artifactId> |
| 155 | <version>1.6.0</version> |
| 156 | <scope>compile</scope> |
| 157 | </dependency> |
| 158 | </dependencies> |
| 159 | |
| 160 | <build> |
| 161 | <plugins> |
| 162 | <plugin> |
| 163 | <groupId>org.apache.maven.plugins</groupId> |
| 164 | <artifactId>maven-compiler-plugin</artifactId> |
| 165 | <configuration> |
| 166 | <target>1.6</target> |
| 167 | <source>1.6</source> |
| 168 | </configuration> |
| 169 | </plugin> |
| 170 | <plugin> |
| 171 | <groupId>org.apache.felix</groupId> |
| 172 | <artifactId>maven-bundle-plugin</artifactId> |
| 173 | <extensions>true</extensions> |
| 174 | </plugin> |
| 175 | <plugin> |
| 176 | <groupId>org.ops4j.pax.exam</groupId> |
| 177 | <artifactId>maven-paxexam-plugin</artifactId> |
| 178 | <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> |