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 | 0bfffa6 | 2015-03-05 09:12:21 +0000 | [diff] [blame] | 18 | <version>6</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> |
| 48 | <dependency> |
| 49 | <groupId>org.osgi</groupId> |
| 50 | <artifactId>org.osgi.compendium</artifactId> |
| 51 | <scope>provided</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>${project.groupId}</groupId> |
| 55 | <artifactId>org.apache.felix.http.api</artifactId> |
Carsten Ziegeler | 864053f | 2015-02-19 16:06:40 +0000 | [diff] [blame] | 56 | <version>3.0.0-SNAPSHOT</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>${project.groupId}</groupId> |
| 60 | <artifactId>org.apache.felix.http.servlet-api</artifactId> |
Carsten Ziegeler | 864053f | 2015-02-19 16:06:40 +0000 | [diff] [blame] | 61 | <version>1.1.0</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>${project.groupId}</groupId> |
| 65 | <artifactId>org.apache.felix.http.jetty</artifactId> |
Carsten Ziegeler | 8e568c0 | 2015-03-02 08:16:02 +0000 | [diff] [blame] | 66 | <version>3.0.3-SNAPSHOT</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>${project.groupId}</groupId> |
| 70 | <artifactId>org.apache.felix.configadmin</artifactId> |
| 71 | <version>1.8.0</version> |
| 72 | </dependency> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 73 | |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>junit</groupId> |
| 76 | <artifactId>junit</artifactId> |
| 77 | <version>4.8.2</version> |
| 78 | <scope>test</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.mockito</groupId> |
Jan Willem Janssen | 6bfbe0e | 2015-03-25 10:28:08 +0000 | [diff] [blame] | 82 | <artifactId>mockito-core</artifactId> |
| 83 | <version>1.10.19</version> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.objenesis</groupId> |
| 88 | <artifactId>objenesis</artifactId> |
| 89 | <version>2.1</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 90 | <scope>test</scope> |
| 91 | </dependency> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>org.ops4j.pax.exam</groupId> |
| 94 | <artifactId>pax-exam-junit4</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-container-forked</artifactId> |
| 101 | <version>${pax.exam.version}</version> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.ops4j.pax.runner</groupId> |
| 106 | <artifactId>pax-runner-no-jcl</artifactId> |
| 107 | <version>${pax.runner.version}</version> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>org.ops4j.pax.exam</groupId> |
| 112 | <artifactId>pax-exam-link-assembly</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-link-mvn</artifactId> |
| 119 | <version>${pax.exam.version}</version> |
| 120 | <scope>test</scope> |
| 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.ops4j.pax.url</groupId> |
| 124 | <artifactId>pax-url-aether</artifactId> |
| 125 | <version>${pax.url.aether.version}</version> |
| 126 | <scope>test</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.ops4j.pax.url</groupId> |
| 130 | <artifactId>pax-url-wrap</artifactId> |
| 131 | <version>${pax.url.aether.version}</version> |
| 132 | <scope>test</scope> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>javax.inject</groupId> |
| 136 | <artifactId>javax.inject</artifactId> |
| 137 | <version>1</version> |
| 138 | <scope>test</scope> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.apache.felix</groupId> |
| 142 | <artifactId>org.apache.felix.framework</artifactId> |
Carsten Ziegeler | 9a65e52 | 2015-04-27 08:16:16 +0000 | [diff] [blame^] | 143 | <version>5.0.0</version> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 144 | <scope>test</scope> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>org.slf4j</groupId> |
| 148 | <artifactId>slf4j-simple</artifactId> |
| 149 | <version>1.6.0</version> |
| 150 | <scope>compile</scope> |
| 151 | </dependency> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 152 | </dependencies> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 153 | |
| 154 | <build> |
| 155 | <plugins> |
| 156 | <plugin> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 157 | <groupId>org.apache.felix</groupId> |
| 158 | <artifactId>maven-bundle-plugin</artifactId> |
| 159 | <extensions>true</extensions> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 160 | </plugin> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 161 | <plugin> |
| 162 | <groupId>org.ops4j.pax.exam</groupId> |
| 163 | <artifactId>maven-paxexam-plugin</artifactId> |
Jan Willem Janssen | 5f73435 | 2014-11-04 12:14:37 +0000 | [diff] [blame] | 164 | <version>1.2.4</version> |
Jan Willem Janssen | 54ed79f | 2015-01-15 10:09:19 +0000 | [diff] [blame] | 165 | <executions> |
| 166 | <execution> |
| 167 | <id>generate-config</id> |
| 168 | <goals> |
| 169 | <goal>generate-depends-file</goal> |
| 170 | </goals> |
| 171 | </execution> |
| 172 | </executions> |
| 173 | </plugin> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 174 | </plugins> |
| 175 | </build> |
| 176 | |
| 177 | </project> |