blob: 9ff511200bc02525aa4f5e2564fcc8f4436e741b [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>
24 <artifactId>org.apache.felix.http</artifactId>
Sten Roger Sandvik71ddccc2009-11-17 20:04:02 +000025 <version>2.0.4</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000026 <relativePath>../../pom.xml</relativePath>
27 </parent>
28
29 <name>Apache Felix Http Samples - Bridge</name>
30 <artifactId>org.apache.felix.http.samples.bridge</artifactId>
31 <packaging>war</packaging>
32
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.mortbay.jetty</groupId>
37 <artifactId>maven-jetty-plugin</artifactId>
38 <version>6.1.10</version>
39 <configuration>
40 <contextPath>/</contextPath>
41 </configuration>
42 </plugin>
43 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-dependency-plugin</artifactId>
46 <executions>
47 <execution>
48 <id>copy-bundles</id>
49 <goals>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000050 <goal>copy-dependencies</goal>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000051 </goals>
52 <configuration>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000053 <includeArtifactIds>
Sten Roger Sandvik5ab3a0a2009-09-30 22:32:29 +000054 org.apache.felix.http.bridge,org.apache.felix.http.samples.filter,org.apache.felix.webconsole
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000055 </includeArtifactIds>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000056 <stripVersion>true</stripVersion>
57 <outputDirectory>
58 ${project.build.directory}/bundles
59 </outputDirectory>
60 </configuration>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-war-plugin</artifactId>
67 <configuration>
68 <webResources>
69 <resource>
70 <directory>
71 ${project.build.directory}/bundles
72 </directory>
73 <targetPath>WEB-INF/bundles</targetPath>
74 </resource>
Sten Roger Sandvik70a2f9f2009-09-30 22:14:06 +000075 <resource>
76 <directory>.</directory>
77 <targetPath>META-INF</targetPath>
78 <includes>
79 <include>LICENSE</include>
80 <include>NOTICE</include>
81 </includes>
82 </resource>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000083 </webResources>
84 </configuration>
85 </plugin>
Sten Roger Sandvik4cbab062009-09-26 13:11:48 +000086 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-source-plugin</artifactId>
89 <version>2.0.4</version>
90 <executions>
91 <execution>
92 <id>attach-sources</id>
93 <goals>
94 <goal>jar</goal>
95 </goals>
96 </execution>
97 </executions>
98 </plugin>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000099 </plugins>
100 </build>
101
102 <dependencies>
103 <dependency>
104 <groupId>javax.servlet</groupId>
105 <artifactId>servlet-api</artifactId>
106 <scope>provided</scope>
107 </dependency>
108 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +0000109 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000110 <artifactId>org.osgi.compendium</artifactId>
111 </dependency>
112 <dependency>
113 <groupId>org.apache.felix</groupId>
114 <artifactId>org.apache.felix.framework</artifactId>
115 <version>1.8.1</version>
116 </dependency>
117 <dependency>
118 <groupId>${pom.groupId}</groupId>
119 <artifactId>org.apache.felix.http.proxy</artifactId>
120 <version>${pom.version}</version>
121 </dependency>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000122 <dependency>
123 <groupId>${pom.groupId}</groupId>
Sten Roger Sandvik5ab3a0a2009-09-30 22:32:29 +0000124 <artifactId>org.apache.felix.http.bridge</artifactId>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000125 <version>${pom.version}</version>
126 <scope>provided</scope>
127 </dependency>
128 <dependency>
129 <groupId>${pom.groupId}</groupId>
130 <artifactId>org.apache.felix.http.samples.filter</artifactId>
131 <version>${pom.version}</version>
132 <scope>provided</scope>
133 </dependency>
134 <dependency>
135 <groupId>${pom.groupId}</groupId>
136 <artifactId>org.apache.felix.webconsole</artifactId>
137 <version>1.2.8</version>
138 <scope>provided</scope>
139 </dependency>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000140 </dependencies>
141
142</project>