blob: ee9bdbf328ad0ed4cf31faeafdb1c3a6a592fec8 [file] [log] [blame]
Felix Meschberger43d91ce2012-10-05 18:30:44 +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>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
Carsten Ziegeler423e1bc2015-06-12 07:22:19 +000025 <version>7-SNAPSHOT</version>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +000026 <relativePath>../parent/pom.xml</relativePath>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000027 </parent>
28
29 <name>Apache Felix Http SSL Filter</name>
30 <artifactId>org.apache.felix.http.sslfilter</artifactId>
Carsten Ziegeler83a0a7f2015-04-29 14:41:02 +000031 <version>1.0.1-SNAPSHOT</version>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000032 <packaging>bundle</packaging>
33
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000034 <scm>
Carsten Ziegeler83a0a7f2015-04-29 14:41:02 +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 Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Felix Meschberger43d91ce2012-10-05 18:30:44 +000040 <build>
41 <plugins>
42 <plugin>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000043 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000045 <extensions>true</extensions>
46 <configuration>
47 <instructions>
48 <Bundle-Activator>
49 org.apache.felix.http.sslfilter.internal.SslFilterActivator
50 </Bundle-Activator>
Jan Willem Janssenee23b282014-05-20 12:48:46 +000051 <Import-Package>
Felix Meschbergera5af35a2014-10-06 10:45:57 +000052 javax.servlet.*;version=2.3,
Jan Willem Janssenee23b282014-05-20 12:48:46 +000053 org.osgi.service.cm;resolution:=optional,
54 *
55 </Import-Package>
56 <DynamicImport-Package>
57 org.osgi.service.cm;version="[1.2,2)"
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000058 </DynamicImport-Package>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000059 </instructions>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64
65 <dependencies>
66 <dependency>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000067 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.core</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000069 <scope>provided</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.osgi</groupId>
73 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000074 <scope>provided</scope>
75 </dependency>
76 <dependency>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000077 <groupId>${project.groupId}</groupId>
78 <artifactId>org.apache.felix.http.servlet-api</artifactId>
Carsten Ziegeler13f3b432015-04-28 09:36:14 +000079 <version>1.1.0</version>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000080 <scope>provided</scope>
81 </dependency>
82 <dependency>
83 <groupId>${project.groupId}</groupId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000084 <artifactId>org.apache.felix.http.api</artifactId>
Carsten Ziegeler13f3b432015-04-28 09:36:14 +000085 <version>2.3.2</version>
86 <scope>provided</scope>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000087 </dependency>
88
89 <!-- Test Dependencies -->
90 <dependency>
91 <groupId>junit</groupId>
92 <artifactId>junit</artifactId>
93 <version>4.8.2</version>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.mockito</groupId>
98 <artifactId>mockito-all</artifactId>
99 <version>1.8.2</version>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>commons-collections</groupId>
104 <artifactId>commons-collections</artifactId>
105 <version>3.2.1</version>
106 <scope>test</scope>
107 </dependency>
Jan Willem Janssencc6f7f32014-10-30 12:07:47 +0000108 <dependency>
109 <groupId>org.eclipse.jetty</groupId>
110 <artifactId>jetty-servlet</artifactId>
111 <version>${jetty.version}</version>
112 <scope>test</scope>
113 </dependency>
Carsten Ziegeler13f3b432015-04-28 09:36:14 +0000114
Felix Meschberger43d91ce2012-10-05 18:30:44 +0000115 </dependencies>
116
Felix Meschberger43d91ce2012-10-05 18:30:44 +0000117</project>