Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +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 | --> |
| 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"> |
| 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>felix-parent</artifactId> |
| 25 | <version>1.2.0</version> |
| 26 | <relativePath>../../../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>org.apache.felix.webconsole.plugins.upnp</artifactId> |
| 30 | <packaging>bundle</packaging> |
Felix Meschberger | ad9587a | 2010-03-26 12:59:50 +0000 | [diff] [blame] | 31 | <version>1.0.1-SNAPSHOT</version> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 32 | |
| 33 | <name>Apache Felix Web Console UPnP Plugin</name> |
| 34 | <description> |
| 35 | This is a plugin for the Apache Felix OSGi web console for displaying |
| 36 | UPnP devices. |
| 37 | </description> |
| 38 | |
| 39 | <scm> |
Felix Meschberger | ad9587a | 2010-03-26 12:59:50 +0000 | [diff] [blame] | 40 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/upnp</connection> |
| 41 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/upnp</developerConnection> |
| 42 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/upnp</url> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 43 | </scm> |
| 44 | |
| 45 | <build> |
| 46 | <plugins> |
| 47 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 --> |
| 48 | <plugin> |
| 49 | <groupId>org.codehaus.mojo</groupId> |
| 50 | <artifactId>native2ascii-maven-plugin</artifactId> |
| 51 | <version>1.0-alpha-1</version> |
| 52 | <executions> |
| 53 | <execution> |
| 54 | <goals> |
| 55 | <goal>native2ascii</goal> |
| 56 | </goals> |
| 57 | <configuration> |
| 58 | <encoding>UTF-8</encoding> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | |
| 64 | <plugin> |
| 65 | <groupId>org.apache.felix</groupId> |
| 66 | <artifactId>maven-bundle-plugin</artifactId> |
| 67 | <version>2.0.1</version> |
| 68 | <extensions>true</extensions> |
| 69 | <configuration> |
| 70 | <instructions> |
| 71 | <Bundle-SymbolicName> |
| 72 | ${artifactId} |
| 73 | </Bundle-SymbolicName> |
| 74 | <Bundle-Vendor> |
| 75 | The Apache Software Foundation |
| 76 | </Bundle-Vendor> |
| 77 | <Bundle-Activator> |
| 78 | org.apache.felix.webconsole.plugins.upnp.internal.Activator |
| 79 | </Bundle-Activator> |
| 80 | <Private-Package> |
| 81 | org.apache.felix.webconsole.plugins.upnp.* |
| 82 | </Private-Package> |
| 83 | <Import-Package> |
| 84 | org.osgi.framework; |
| 85 | org.osgi.service.upnp;version="1.1", |
| 86 | org.osgi.util.tracker; version="1.0.0", |
| 87 | org.apache.felix.webconsole; version="3.0.0", |
| 88 | javax.servlet; version="2.4", |
| 89 | javax.servlet.http; version="2.4", |
| 90 | org.json |
| 91 | </Import-Package> |
| 92 | </instructions> |
| 93 | </configuration> |
| 94 | </plugin> |
| 95 | </plugins> |
| 96 | </build> |
| 97 | |
| 98 | <dependencies> |
| 99 | <dependency> |
| 100 | <groupId>javax.servlet</groupId> |
| 101 | <artifactId>servlet-api</artifactId> |
| 102 | <version>2.4</version> |
| 103 | <scope>provided</scope> |
| 104 | </dependency> |
| 105 | |
| 106 | <dependency> |
| 107 | <groupId>org.osgi</groupId> |
| 108 | <artifactId>org.osgi.core</artifactId> |
| 109 | <version>4.0.0</version> |
| 110 | <scope>provided</scope> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.osgi</groupId> |
| 114 | <artifactId>org.osgi.compendium</artifactId> |
| 115 | <version>4.0.0</version> |
| 116 | <scope>provided</scope> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.apache.felix</groupId> |
| 120 | <artifactId>org.apache.felix.webconsole</artifactId> |
Felix Meschberger | 21d70d7 | 2010-04-02 15:18:32 +0000 | [diff] [blame] | 121 | <version>3.0.0</version> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 122 | <scope>provided</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.json</groupId> |
| 126 | <artifactId>json</artifactId> |
| 127 | <version>20070829</version> |
| 128 | <scope>compile</scope> |
| 129 | <optional>true</optional> |
| 130 | </dependency> |
| 131 | </dependencies> |
| 132 | </project> |