blob: 11d922734c4b22b1e9d00b0a36af5d295318698c [file] [log] [blame]
Sten Roger Sandvikc73f7412009-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 Sandvikdad7a6d2009-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 Sandvikc73f7412009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger078b99f2011-12-05 15:22:27 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
25 <version>1-SNAPSHOT</version>
26 <relativePath>../../parent/pom.xml</relativePath>
Sten Roger Sandvikc73f7412009-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>
Felix Meschberger078b99f2011-12-05 15:22:27 +000031 <version>2.2.1-SNAPSHOT</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000032 <packaging>war</packaging>
33
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.mortbay.jetty</groupId>
38 <artifactId>maven-jetty-plugin</artifactId>
39 <version>6.1.10</version>
40 <configuration>
41 <contextPath>/</contextPath>
42 </configuration>
43 </plugin>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-dependency-plugin</artifactId>
47 <executions>
48 <execution>
49 <id>copy-bundles</id>
50 <goals>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000051 <goal>copy-dependencies</goal>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000052 </goals>
53 <configuration>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000054 <includeArtifactIds>
Sten Roger Sandvik1258e9e2009-09-30 22:32:29 +000055 org.apache.felix.http.bridge,org.apache.felix.http.samples.filter,org.apache.felix.webconsole
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000056 </includeArtifactIds>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000057 <stripVersion>true</stripVersion>
58 <outputDirectory>
59 ${project.build.directory}/bundles
60 </outputDirectory>
61 </configuration>
62 </execution>
63 </executions>
64 </plugin>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-war-plugin</artifactId>
68 <configuration>
69 <webResources>
70 <resource>
71 <directory>
72 ${project.build.directory}/bundles
73 </directory>
74 <targetPath>WEB-INF/bundles</targetPath>
75 </resource>
Sten Roger Sandvik73c03812009-09-30 22:14:06 +000076 <resource>
77 <directory>.</directory>
78 <targetPath>META-INF</targetPath>
79 <includes>
80 <include>LICENSE</include>
81 <include>NOTICE</include>
82 </includes>
83 </resource>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000084 </webResources>
85 </configuration>
86 </plugin>
Sten Roger Sandvika006c962009-09-26 13:11:48 +000087 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-source-plugin</artifactId>
90 <version>2.0.4</version>
91 <executions>
92 <execution>
93 <id>attach-sources</id>
94 <goals>
95 <goal>jar</goal>
96 </goals>
97 </execution>
98 </executions>
99 </plugin>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000100 </plugins>
101 </build>
102
103 <dependencies>
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>servlet-api</artifactId>
107 <scope>provided</scope>
108 </dependency>
109 <dependency>
Richard S. Hall01012fc2009-10-01 08:55:33 +0000110 <groupId>org.osgi</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000111 <artifactId>org.osgi.compendium</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.felix</groupId>
115 <artifactId>org.apache.felix.framework</artifactId>
116 <version>1.8.1</version>
117 </dependency>
118 <dependency>
119 <groupId>${pom.groupId}</groupId>
120 <artifactId>org.apache.felix.http.proxy</artifactId>
121 <version>${pom.version}</version>
122 </dependency>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +0000123 <dependency>
124 <groupId>${pom.groupId}</groupId>
Sten Roger Sandvik1258e9e2009-09-30 22:32:29 +0000125 <artifactId>org.apache.felix.http.bridge</artifactId>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +0000126 <version>${pom.version}</version>
127 <scope>provided</scope>
128 </dependency>
129 <dependency>
130 <groupId>${pom.groupId}</groupId>
131 <artifactId>org.apache.felix.http.samples.filter</artifactId>
132 <version>${pom.version}</version>
133 <scope>provided</scope>
134 </dependency>
135 <dependency>
136 <groupId>${pom.groupId}</groupId>
137 <artifactId>org.apache.felix.webconsole</artifactId>
138 <version>1.2.8</version>
139 <scope>provided</scope>
140 </dependency>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000141 </dependencies>
142
143</project>