blob: d6d6e525a3d0a9817003910bed451591fcc9fab4 [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>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000025 <version>5-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>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000031 <version>0.2.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>
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 Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +000039
40 <properties>
Jan Willem Janssenfffffc62014-10-28 16:05:32 +000041 <felix.http.api.version>2.3.2-SNAPSHOT</felix.http.api.version>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +000042 </properties>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000043
Felix Meschberger43d91ce2012-10-05 18:30:44 +000044 <build>
45 <plugins>
46 <plugin>
Jan Willem Janssenee23b282014-05-20 12:48:46 +000047 <artifactId>maven-compiler-plugin</artifactId>
48 <configuration>
49 <source>1.5</source>
50 <target>1.5</target>
51 </configuration>
52 </plugin>
53 <plugin>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000054 <groupId>org.apache.felix</groupId>
55 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000056 <extensions>true</extensions>
57 <configuration>
58 <instructions>
59 <Bundle-Activator>
60 org.apache.felix.http.sslfilter.internal.SslFilterActivator
61 </Bundle-Activator>
Jan Willem Janssenee23b282014-05-20 12:48:46 +000062 <Import-Package>
Felix Meschbergera5af35a2014-10-06 10:45:57 +000063 javax.servlet.*;version=2.3,
Jan Willem Janssenee23b282014-05-20 12:48:46 +000064 org.osgi.service.cm;resolution:=optional,
65 *
66 </Import-Package>
67 <DynamicImport-Package>
68 org.osgi.service.cm;version="[1.2,2)"
69 </DynamicImport-Package>)
Felix Meschberger43d91ce2012-10-05 18:30:44 +000070 </instructions>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
75
76 <dependencies>
77 <dependency>
Jan Willem Janssencc6f7f32014-10-30 12:07:47 +000078 <groupId>org.apache.felix</groupId>
79 <artifactId>org.apache.felix.http.servlet-api</artifactId>
80 <version>1.0.0</version>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000081 <scope>provided</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.osgi</groupId>
85 <artifactId>org.osgi.core</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000086 <scope>provided</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000091 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.felix</groupId>
95 <artifactId>org.apache.felix.http.api</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000096 <version>2.3.3-SNAPSHOT</version>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000097 </dependency>
98
99 <!-- Test Dependencies -->
100 <dependency>
101 <groupId>junit</groupId>
102 <artifactId>junit</artifactId>
103 <version>4.8.2</version>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.mockito</groupId>
108 <artifactId>mockito-all</artifactId>
109 <version>1.8.2</version>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>commons-collections</groupId>
114 <artifactId>commons-collections</artifactId>
115 <version>3.2.1</version>
116 <scope>test</scope>
117 </dependency>
Jan Willem Janssencc6f7f32014-10-30 12:07:47 +0000118
119 <dependency>
120 <groupId>org.eclipse.jetty</groupId>
121 <artifactId>jetty-servlet</artifactId>
122 <version>${jetty.version}</version>
123 <scope>test</scope>
124 </dependency>
Felix Meschberger43d91ce2012-10-05 18:30:44 +0000125 </dependencies>
126
Felix Meschberger43d91ce2012-10-05 18:30:44 +0000127</project>