Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 1 | <!-- 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 Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 13 | |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 14 | <modelVersion>4.0.0</modelVersion> |
| 15 | <parent> |
| 16 | <groupId>org.apache.felix</groupId> |
| 17 | <artifactId>org.apache.felix.http.parent</artifactId> |
Carsten Ziegeler | 423e1bc | 2015-06-12 07:22:19 +0000 | [diff] [blame] | 18 | <version>7-SNAPSHOT</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 19 | <relativePath>../parent/pom.xml</relativePath> |
| 20 | </parent> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 21 | |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 22 | <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 Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 26 | |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 27 | <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> |
Jan Willem Janssen | d6d2ec6 | 2014-10-28 14:03:31 +0000 | [diff] [blame] | 34 | <pax.exam.version>2.6.0</pax.exam.version> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 35 | <pax.exam.plugin.version>1.2.4</pax.exam.plugin.version> |
Jan Willem Janssen | d6d2ec6 | 2014-10-28 14:03:31 +0000 | [diff] [blame] | 36 | <pax.url.aether.version>2.1.0</pax.url.aether.version> |
| 37 | <pax.swissbox.version>1.7.0</pax.swissbox.version> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 38 | <pax.runner.version>1.7.6</pax.runner.version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 39 | </properties> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 40 | |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.osgi</groupId> |
| 44 | <artifactId>org.osgi.core</artifactId> |
Carsten Ziegeler | 864053f | 2015-02-19 16:06:40 +0000 | [diff] [blame] | 45 | <version>6.0.0</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 46 | <scope>provided</scope> |
| 47 | </dependency> |
Carsten Ziegeler | 14877e5 | 2015-05-26 16:18:47 +0000 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>com.googlecode.json-simple</groupId> |
| 50 | <artifactId>json-simple</artifactId> |
| 51 | <version>1.1.1</version> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.apache.httpcomponents</groupId> |
| 56 | <artifactId>httpcore-osgi</artifactId> |
| 57 | <version>4.3.2</version> |
| 58 | <scope>provided</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.apache.httpcomponents</groupId> |
| 62 | <artifactId>httpclient-osgi</artifactId> |
| 63 | <version>4.3.4</version> |
| 64 | <scope>provided</scope> |
| 65 | </dependency> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 66 | <dependency> |
| 67 | <groupId>org.osgi</groupId> |
| 68 | <artifactId>org.osgi.compendium</artifactId> |
| 69 | <scope>provided</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>${project.groupId}</groupId> |
| 73 | <artifactId>org.apache.felix.http.api</artifactId> |
Carsten Ziegeler | 864053f | 2015-02-19 16:06:40 +0000 | [diff] [blame] | 74 | <version>3.0.0-SNAPSHOT</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>${project.groupId}</groupId> |
| 78 | <artifactId>org.apache.felix.http.servlet-api</artifactId> |
Carsten Ziegeler | bf16a78 | 2015-05-20 09:32:26 +0000 | [diff] [blame] | 79 | <version>1.1.1-SNAPSHOT</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>${project.groupId}</groupId> |
| 83 | <artifactId>org.apache.felix.http.jetty</artifactId> |
Carsten Ziegeler | 8e568c0 | 2015-03-02 08:16:02 +0000 | [diff] [blame] | 84 | <version>3.0.3-SNAPSHOT</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>${project.groupId}</groupId> |
| 88 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 89 | <version>1.8.0</version> |
| 90 | </dependency> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 91 | |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>junit</groupId> |
| 94 | <artifactId>junit</artifactId> |
| 95 | <version>4.8.2</version> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.mockito</groupId> |
Jan Willem Janssen | 6bfbe0e | 2015-03-25 10:28:08 +0000 | [diff] [blame] | 100 | <artifactId>mockito-core</artifactId> |
| 101 | <version>1.10.19</version> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.objenesis</groupId> |
| 106 | <artifactId>objenesis</artifactId> |
| 107 | <version>2.1</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 108 | <scope>test</scope> |
| 109 | </dependency> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 110 | <dependency> |
| 111 | <groupId>org.ops4j.pax.exam</groupId> |
| 112 | <artifactId>pax-exam-junit4</artifactId> |
| 113 | <version>${pax.exam.version}</version> |
| 114 | <scope>test</scope> |
| 115 | </dependency> |
| 116 | <dependency> |
| 117 | <groupId>org.ops4j.pax.exam</groupId> |
| 118 | <artifactId>pax-exam-container-forked</artifactId> |
| 119 | <version>${pax.exam.version}</version> |
| 120 | <scope>test</scope> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.ops4j.pax.runner</groupId> |
| 124 | <artifactId>pax-runner-no-jcl</artifactId> |
| 125 | <version>${pax.runner.version}</version> |
| 126 | <scope>test</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.ops4j.pax.exam</groupId> |
| 130 | <artifactId>pax-exam-link-assembly</artifactId> |
| 131 | <version>${pax.exam.version}</version> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.ops4j.pax.exam</groupId> |
| 136 | <artifactId>pax-exam-link-mvn</artifactId> |
| 137 | <version>${pax.exam.version}</version> |
| 138 | <scope>test</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.ops4j.pax.url</groupId> |
| 142 | <artifactId>pax-url-aether</artifactId> |
| 143 | <version>${pax.url.aether.version}</version> |
| 144 | <scope>test</scope> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>org.ops4j.pax.url</groupId> |
| 148 | <artifactId>pax-url-wrap</artifactId> |
| 149 | <version>${pax.url.aether.version}</version> |
| 150 | <scope>test</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>javax.inject</groupId> |
| 154 | <artifactId>javax.inject</artifactId> |
| 155 | <version>1</version> |
| 156 | <scope>test</scope> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>org.apache.felix</groupId> |
| 160 | <artifactId>org.apache.felix.framework</artifactId> |
Carsten Ziegeler | 9a65e52 | 2015-04-27 08:16:16 +0000 | [diff] [blame] | 161 | <version>5.0.0</version> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 162 | <scope>test</scope> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>org.slf4j</groupId> |
| 166 | <artifactId>slf4j-simple</artifactId> |
| 167 | <version>1.6.0</version> |
| 168 | <scope>compile</scope> |
| 169 | </dependency> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 170 | </dependencies> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 171 | |
| 172 | <build> |
| 173 | <plugins> |
| 174 | <plugin> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 175 | <groupId>org.apache.felix</groupId> |
| 176 | <artifactId>maven-bundle-plugin</artifactId> |
| 177 | <extensions>true</extensions> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 178 | </plugin> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 179 | <plugin> |
| 180 | <groupId>org.ops4j.pax.exam</groupId> |
| 181 | <artifactId>maven-paxexam-plugin</artifactId> |
Jan Willem Janssen | 5f73435 | 2014-11-04 12:14:37 +0000 | [diff] [blame] | 182 | <version>1.2.4</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 183 | <executions> |
| 184 | <execution> |
| 185 | <id>generate-config</id> |
| 186 | <goals> |
| 187 | <goal>generate-depends-file</goal> |
| 188 | </goals> |
| 189 | </execution> |
| 190 | </executions> |
| 191 | </plugin> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 192 | </plugins> |
| 193 | </build> |
| 194 | |
| 195 | </project> |