Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Sandvik | ee4dd85 | 2009-09-28 20:30:00 +0000 | [diff] [blame] | 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"> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 24 | <artifactId>org.apache.felix.http.parent</artifactId> |
| 25 | <version>1-SNAPSHOT</version> |
| 26 | <relativePath>../../parent/pom.xml</relativePath> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <name>Apache Felix Http Samples - Bridge</name> |
| 30 | <artifactId>org.apache.felix.http.samples.bridge</artifactId> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 31 | <version>2.2.1-SNAPSHOT</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 32 | <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 Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 51 | <goal>copy-dependencies</goal> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 52 | </goals> |
| 53 | <configuration> |
Sten Roger Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 54 | <includeArtifactIds> |
Sten Roger Sandvik | 5ab3a0a | 2009-09-30 22:32:29 +0000 | [diff] [blame] | 55 | org.apache.felix.http.bridge,org.apache.felix.http.samples.filter,org.apache.felix.webconsole |
Sten Roger Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 56 | </includeArtifactIds> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 57 | <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 Sandvik | 70a2f9f | 2009-09-30 22:14:06 +0000 | [diff] [blame] | 76 | <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 Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 84 | </webResources> |
| 85 | </configuration> |
| 86 | </plugin> |
Sten Roger Sandvik | 4cbab06 | 2009-09-26 13:11:48 +0000 | [diff] [blame] | 87 | <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 Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 100 | </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. Hall | 4b26230 | 2009-10-01 08:55:33 +0000 | [diff] [blame] | 110 | <groupId>org.osgi</groupId> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 111 | <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 Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 123 | <dependency> |
| 124 | <groupId>${pom.groupId}</groupId> |
Sten Roger Sandvik | 5ab3a0a | 2009-09-30 22:32:29 +0000 | [diff] [blame] | 125 | <artifactId>org.apache.felix.http.bridge</artifactId> |
Sten Roger Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 126 | <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 Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 141 | </dependencies> |
| 142 | |
| 143 | </project> |