Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 1 | <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor |
| 2 | license agreements. See the NOTICE file distributed with this work for additional |
| 3 | information regarding copyright ownership. The ASF licenses this file to |
| 4 | you under the Apache License, Version 2.0 (the "License"); you may not use |
| 5 | this file except in compliance with the License. You may obtain a copy of |
| 6 | the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 7 | by applicable law or agreed to in writing, software distributed under the |
| 8 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 9 | OF ANY KIND, either express or implied. See the License for the specific |
| 10 | language governing permissions and limitations under the License. --> |
Felix Meschberger | 0c4d518 | 2012-06-01 14:26:26 +0000 | [diff] [blame] | 11 | <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"> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 12 | |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <parent> |
| 15 | <groupId>org.apache.felix</groupId> |
| 16 | <artifactId>felix-parent</artifactId> |
Felix Meschberger | 8ad600a | 2012-06-01 13:35:50 +0000 | [diff] [blame] | 17 | <version>2.1</version> |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 18 | <relativePath>../../../pom/pom.xml</relativePath> |
| 19 | </parent> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 20 | |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 21 | <artifactId>org.apache.felix.webconsole.plugins.upnp</artifactId> |
| 22 | <packaging>bundle</packaging> |
Felix Meschberger | db7bad1 | 2012-06-01 14:26:42 +0000 | [diff] [blame] | 23 | <version>1.0.3-SNAPSHOT</version> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 24 | |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 25 | <name>Apache Felix Web Console UPnP Plugin</name> |
| 26 | <description> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 27 | This is a plugin for the Apache Felix OSGi web console for displaying |
| 28 | UPnP devices. |
| 29 | </description> |
| 30 | |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 31 | <scm> |
Felix Meschberger | db7bad1 | 2012-06-01 14:26:42 +0000 | [diff] [blame] | 32 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/upnp</connection> |
| 33 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/upnp</developerConnection> |
| 34 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/upnp</url> |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 35 | </scm> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 36 | |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 37 | <build> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 38 | |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 39 | <!-- add UTF-8-to-ISO translated resources --> |
| 40 | <resources> |
| 41 | <resource> |
| 42 | <directory>${basedir}/src/main/resources</directory> |
| 43 | </resource> |
| 44 | <resource> |
| 45 | <directory>target/classes</directory> |
| 46 | <includes> |
| 47 | <include>OSGI-INF/**</include> |
| 48 | </includes> |
| 49 | <filtering>false</filtering> |
| 50 | </resource> |
| 51 | </resources> |
| 52 | |
| 53 | <plugins> |
| 54 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 --> |
| 55 | <plugin> |
| 56 | <groupId>org.codehaus.mojo</groupId> |
| 57 | <artifactId>native2ascii-maven-plugin</artifactId> |
| 58 | <version>1.0-beta-1</version> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <goals> |
| 62 | <goal>native2ascii</goal> |
| 63 | </goals> |
| 64 | <configuration> |
| 65 | <encoding>UTF-8</encoding> |
| 66 | </configuration> |
| 67 | </execution> |
| 68 | </executions> |
| 69 | </plugin> |
| 70 | |
| 71 | <plugin> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>maven-bundle-plugin</artifactId> |
| 74 | <version>2.3.4</version> |
| 75 | <extensions>true</extensions> |
| 76 | <configuration> |
| 77 | <instructions> |
| 78 | <Bundle-SymbolicName> |
| 79 | ${project.artifactId} |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 80 | </Bundle-SymbolicName> |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 81 | <Private-Package> |
| 82 | org.apache.felix.webconsole.plugins.upnp.* |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 83 | </Private-Package> |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 84 | <Bundle-Activator> |
| 85 | org.apache.felix.webconsole.plugins.upnp.internal.Activator |
Valentin Valchev | cf6d87f | 2012-04-04 08:06:18 +0000 | [diff] [blame] | 86 | </Bundle-Activator> |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
Felix Meschberger | 8ad600a | 2012-06-01 13:35:50 +0000 | [diff] [blame] | 90 | <plugin> |
| 91 | <groupId>org.apache.rat</groupId> |
| 92 | <artifactId>apache-rat-plugin</artifactId> |
| 93 | <configuration> |
| 94 | <includes> |
| 95 | <include>src/**</include> |
| 96 | </includes> |
| 97 | <excludes> |
| 98 | <exclude>src/main/appended-resources/**</exclude> |
| 99 | <exclude>src/main/resources/res/jquery-treeview-1.4/**</exclude> |
| 100 | <exclude>src/main/resources/res/upnp.*</exclude> |
| 101 | </excludes> |
| 102 | </configuration> |
| 103 | </plugin> |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 104 | </plugins> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 105 | |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 106 | |
Valentin Valchev | 5bf076e | 2012-04-05 11:12:23 +0000 | [diff] [blame] | 107 | </build> |
| 108 | |
| 109 | <dependencies> |
| 110 | <dependency> |
| 111 | <groupId>javax.servlet</groupId> |
| 112 | <artifactId>servlet-api</artifactId> |
| 113 | <version>2.4</version> |
| 114 | <scope>provided</scope> |
| 115 | </dependency> |
| 116 | |
| 117 | <dependency> |
| 118 | <groupId>org.osgi</groupId> |
| 119 | <artifactId>org.osgi.core</artifactId> |
| 120 | <version>4.0.0</version> |
| 121 | <scope>provided</scope> |
| 122 | </dependency> |
| 123 | <dependency> |
| 124 | <groupId>org.osgi</groupId> |
| 125 | <artifactId>org.osgi.compendium</artifactId> |
| 126 | <version>4.0.0</version> |
| 127 | <scope>provided</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.apache.felix</groupId> |
| 131 | <artifactId>org.apache.felix.webconsole</artifactId> |
| 132 | <version>3.1.0</version> |
| 133 | <scope>provided</scope> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.json</groupId> |
| 137 | <artifactId>json</artifactId> |
| 138 | <version>20070829</version> |
| 139 | <scope>compile</scope> |
| 140 | <optional>true</optional> |
| 141 | </dependency> |
| 142 | </dependencies> |
Felix Meschberger | d35ffc3 | 2010-03-26 12:59:11 +0000 | [diff] [blame] | 143 | </project> |