blob: 5887e865b1390c9448f19463d10f2fd5562bdda8 [file] [log] [blame]
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +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-->
Sten Roger Sandvikee4dd852009-09-28 20:30:00 +000019<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">
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
Carsten Ziegeler430c7982015-02-02 08:34:34 +000025 <version>5</version>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000026 <relativePath>../parent/pom.xml</relativePath>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000027 </parent>
28
29 <name>Apache Felix Http Jetty</name>
30 <artifactId>org.apache.felix.http.jetty</artifactId>
Carsten Ziegeler86d7b702015-01-29 12:32:20 +000031 <version>3.0.1-SNAPSHOT</version>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000032 <packaging>jar</packaging>
Jan Willem Janssen7608f852013-08-09 15:27:00 +000033
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000034 <scm>
Carsten Ziegeler86d7b702015-01-29 12:32:20 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/jetty</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/jetty</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/jetty/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Jan Willem Janssen7608f852013-08-09 15:27:00 +000040 <properties>
Carsten Ziegeler06ff4d22015-01-16 12:15:46 +000041 <http.java.version>7</http.java.version>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +000042 <!-- jetty.version is moved to http-parent POM -->
Jan Willem Janssen7608f852013-08-09 15:27:00 +000043 </properties>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000044
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
50 <configuration>
51 <instructions>
Jan Willem Janssen2198f942013-11-11 10:03:05 +000052 <X-Jetty-Version>
53 ${jetty.version}
54 </X-Jetty-Version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000055 <Bundle-Activator>
56 org.apache.felix.http.jetty.internal.JettyActivator
57 </Bundle-Activator>
58 <Export-Package>
Jan Willem Janssen551f5e72014-05-07 13:53:41 +000059 org.eclipse.jetty.*;-split-package:=merge-first;version=${version;===;${jetty.version}},
60 org.apache.felix.http.jetty
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000061 </Export-Package>
62 <Private-Package>
63 org.apache.felix.http.base.*,
Jan Willem Janssen13d88542014-02-12 13:32:48 +000064 org.apache.felix.http.jetty.*
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000065 </Private-Package>
66 <Import-Package>
Jan Willem Janssen13d88542014-02-12 13:32:48 +000067 javax.imageio;resolution:=optional,
68 javax.sql;resolution:=optional,
69 org.slf4j.*;resolution:=optional,
70 org.ietf.jgss;resolution:=optional,
71 org.mortbay.log;resolution:=optional;version="[6.1,7)",
72 org.mortbay.util.ajax;resolution:=optional;version="[6.1,7)",
73 org.osgi.service.useradmin;resolution:=optional,
74 *
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000075 </Import-Package>
76 </instructions>
77 </configuration>
78 </plugin>
79 </plugins>
80 </build>
81
82 <dependencies>
83 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +000084 <groupId>org.osgi</groupId>
85 <artifactId>org.osgi.core</artifactId>
Carsten Ziegelercb145b52015-01-29 13:13:33 +000086 <version>6.0.0</version>
Richard S. Hall4b262302009-10-01 08:55:33 +000087 <scope>provided</scope>
88 </dependency>
89 <dependency>
Jan Willem Janssen551f5e72014-05-07 13:53:41 +000090 <groupId>biz.aQute</groupId>
91 <artifactId>bndlib</artifactId>
92 <version>1.50.0</version>
93 <scope>provided</scope>
94 </dependency>
95 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +000096 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000097 <artifactId>org.osgi.compendium</artifactId>
98 <scope>provided</scope>
99 </dependency>
100 <dependency>
Sten Roger Sandvik2ff416f2009-09-24 18:17:47 +0000101 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000102 <artifactId>javax.servlet-api</artifactId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000103 </dependency>
104 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000105 <groupId>org.eclipse.jetty</groupId>
106 <artifactId>jetty-servlet</artifactId>
Jan Willem Janssen7608f852013-08-09 15:27:00 +0000107 <version>${jetty.version}</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000108 </dependency>
109 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000110 <groupId>org.eclipse.jetty</groupId>
111 <artifactId>jetty-server</artifactId>
Jan Willem Janssen7608f852013-08-09 15:27:00 +0000112 <version>${jetty.version}</version>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000113 </dependency>
114 <dependency>
115 <groupId>org.eclipse.jetty</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000116 <artifactId>jetty-util</artifactId>
Jan Willem Janssen7608f852013-08-09 15:27:00 +0000117 <version>${jetty.version}</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000118 </dependency>
119 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000120 <groupId>org.eclipse.jetty</groupId>
121 <artifactId>jetty-jmx</artifactId>
Jan Willem Janssen7608f852013-08-09 15:27:00 +0000122 <version>${jetty.version}</version>
Felix Meschberger815934f2011-09-23 13:00:33 +0000123 </dependency>
124 <dependency>
Xander Uiterlinden6d5c1062012-06-06 07:03:59 +0000125 <groupId>org.eclipse.jetty</groupId>
126 <artifactId>jetty-security</artifactId>
Jan Willem Janssen7608f852013-08-09 15:27:00 +0000127 <version>${jetty.version}</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000128 </dependency>
129 <dependency>
Felix Meschberger0de558d2013-06-25 12:47:02 +0000130 <groupId>org.eclipse.jetty</groupId>
131 <artifactId>jetty-webapp</artifactId>
Jan Willem Janssen7608f852013-08-09 15:27:00 +0000132 <version>${jetty.version}</version>
Felix Meschberger0de558d2013-06-25 12:47:02 +0000133 </dependency>
134 <dependency>
Carsten Ziegeler7601d532015-01-26 07:45:43 +0000135 <groupId>org.eclipse.jetty.websocket</groupId>
136 <artifactId>websocket-servlet</artifactId>
137 <version>${jetty.version}</version>
138 </dependency>
139 <dependency>
140 <groupId>org.eclipse.jetty.websocket</groupId>
141 <artifactId>websocket-server</artifactId>
142 <version>${jetty.version}</version>
143 </dependency>
144 <dependency>
Felix Meschberger13844cc2011-11-03 08:45:38 +0000145 <groupId>org.apache.felix</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000146 <artifactId>org.apache.felix.http.api</artifactId>
Carsten Ziegelera7e49322015-01-29 12:38:06 +0000147 <version>3.0.0-SNAPSHOT</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000148 </dependency>
149 <dependency>
Felix Meschberger13844cc2011-11-03 08:45:38 +0000150 <groupId>org.apache.felix</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000151 <artifactId>org.apache.felix.http.base</artifactId>
Carsten Ziegelera7e49322015-01-29 12:38:06 +0000152 <version>3.0.0-SNAPSHOT</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000153 </dependency>
154 </dependencies>
155
156</project>