blob: ff7d8f6eadfd55346098958f4e82963803dd8c17 [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 Janssen9c6fa9f2014-06-06 15:34:45 +000025 <version>4-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 Janssen9c6fa9f2014-06-06 15:34:45 +000031 <version>0.1.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 Janssen9c6fa9f2014-06-06 15:34:45 +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 Janssen0a3f86a2014-02-07 16:03:21 +000041 <felix.http.api.version>2.3.0-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>
63 org.osgi.service.cm;resolution:=optional,
64 *
65 </Import-Package>
66 <DynamicImport-Package>
67 org.osgi.service.cm;version="[1.2,2)"
68 </DynamicImport-Package>)
Felix Meschberger43d91ce2012-10-05 18:30:44 +000069 </instructions>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74
75 <dependencies>
76 <dependency>
77 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000078 <artifactId>javax.servlet-api</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000079 <scope>provided</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.osgi</groupId>
83 <artifactId>org.osgi.core</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000084 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.osgi</groupId>
88 <artifactId>org.osgi.compendium</artifactId>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000089 <scope>provided</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>org.apache.felix.http.api</artifactId>
Jan Willem Janssen9c6fa9f2014-06-06 15:34:45 +000094 <version>2.4.0-SNAPSHOT</version>
Felix Meschberger43d91ce2012-10-05 18:30:44 +000095 </dependency>
96
97 <!-- Test Dependencies -->
98 <dependency>
99 <groupId>junit</groupId>
100 <artifactId>junit</artifactId>
101 <version>4.8.2</version>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.mockito</groupId>
106 <artifactId>mockito-all</artifactId>
107 <version>1.8.2</version>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>commons-collections</groupId>
112 <artifactId>commons-collections</artifactId>
113 <version>3.2.1</version>
114 <scope>test</scope>
115 </dependency>
116 </dependencies>
117
Felix Meschberger43d91ce2012-10-05 18:30:44 +0000118</project>