blob: 6db2dd234affcf5009a1cd101b3ee939b81206a5 [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>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000025 <version>5-SNAPSHOT</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 Samples - Bridge</name>
30 <artifactId>org.apache.felix.http.samples.bridge</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000031 <version>2.4.0-SNAPSHOT</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000032 <packaging>war</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/samples/bridge</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/samples/bridge</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/samples/bridge/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.mortbay.jetty</groupId>
44 <artifactId>maven-jetty-plugin</artifactId>
Jan Willem Janssenae0d7512014-11-04 12:04:37 +000045 <version>6.1.26</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000046 <configuration>
47 <contextPath>/</contextPath>
48 </configuration>
49 </plugin>
50 <plugin>
51 <groupId>org.apache.maven.plugins</groupId>
52 <artifactId>maven-dependency-plugin</artifactId>
53 <executions>
54 <execution>
55 <id>copy-bundles</id>
56 <goals>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000057 <goal>copy-dependencies</goal>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000058 </goals>
59 <configuration>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000060 <includeArtifactIds>
Sten Roger Sandvik5ab3a0a2009-09-30 22:32:29 +000061 org.apache.felix.http.bridge,org.apache.felix.http.samples.filter,org.apache.felix.webconsole
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000062 </includeArtifactIds>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000063 <stripVersion>true</stripVersion>
64 <outputDirectory>
65 ${project.build.directory}/bundles
66 </outputDirectory>
67 </configuration>
68 </execution>
69 </executions>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-war-plugin</artifactId>
Jan Willem Janssen5f734352014-11-04 12:14:37 +000074 <version>2.5</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000075 <configuration>
76 <webResources>
77 <resource>
78 <directory>
79 ${project.build.directory}/bundles
80 </directory>
81 <targetPath>WEB-INF/bundles</targetPath>
82 </resource>
Sten Roger Sandvik70a2f9f2009-09-30 22:14:06 +000083 <resource>
84 <directory>.</directory>
85 <targetPath>META-INF</targetPath>
86 <includes>
87 <include>LICENSE</include>
88 <include>NOTICE</include>
89 </includes>
90 </resource>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000091 </webResources>
92 </configuration>
93 </plugin>
Sten Roger Sandvik4cbab062009-09-26 13:11:48 +000094 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-source-plugin</artifactId>
Sten Roger Sandvik4cbab062009-09-26 13:11:48 +000097 <executions>
98 <execution>
99 <id>attach-sources</id>
100 <goals>
101 <goal>jar</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000106 </plugins>
107 </build>
108
109 <dependencies>
110 <dependency>
111 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +0000112 <artifactId>javax.servlet-api</artifactId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000113 <scope>provided</scope>
114 </dependency>
115 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +0000116 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000117 <artifactId>org.osgi.compendium</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>org.apache.felix</groupId>
121 <artifactId>org.apache.felix.framework</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000122 <version>4.2.1</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000123 </dependency>
124 <dependency>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000125 <groupId>${project.groupId}</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000126 <artifactId>org.apache.felix.http.proxy</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +0000127 <version>[2.3,2.4)</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000128 </dependency>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000129 <dependency>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000130 <groupId>${project.groupId}</groupId>
Sten Roger Sandvik5ab3a0a2009-09-30 22:32:29 +0000131 <artifactId>org.apache.felix.http.bridge</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +0000132 <version>[2.4.0-SNAPSHOT,2.5)</version>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000133 <scope>provided</scope>
134 </dependency>
135 <dependency>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000136 <groupId>${project.groupId}</groupId>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000137 <artifactId>org.apache.felix.http.samples.filter</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +0000138 <version>[2.3,2.4)</version>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000139 <scope>provided</scope>
140 </dependency>
141 <dependency>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000142 <groupId>${project.groupId}</groupId>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000143 <artifactId>org.apache.felix.webconsole</artifactId>
Jan Willem Janssen926e71c2013-11-10 14:41:39 +0000144 <version>4.2.0</version>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000145 <scope>provided</scope>
146 </dependency>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000147 </dependencies>
148
149</project>