blob: 9d07452873ab237f75dc6063afd58062cbf10855 [file] [log] [blame]
Valentin Valchev5bf076e2012-04-05 11:12:23 +00001<!-- 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. -->
11<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000013
Valentin Valchev5bf076e2012-04-05 11:12:23 +000014 <modelVersion>4.0.0</modelVersion>
15 <parent>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>felix-parent</artifactId>
18 <version>1.2.0</version>
19 <relativePath>../../../pom/pom.xml</relativePath>
20 </parent>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000021
Valentin Valchev5bf076e2012-04-05 11:12:23 +000022 <artifactId>org.apache.felix.webconsole.plugins.upnp</artifactId>
23 <packaging>bundle</packaging>
24 <version>1.0.1-SNAPSHOT</version>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000025
Valentin Valchev5bf076e2012-04-05 11:12:23 +000026 <name>Apache Felix Web Console UPnP Plugin</name>
27 <description>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000028 This is a plugin for the Apache Felix OSGi web console for displaying
29 UPnP devices.
30 </description>
31
Valentin Valchev5bf076e2012-04-05 11:12:23 +000032 <scm>
33 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/upnp</connection>
34 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/upnp</developerConnection>
35 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/upnp</url>
36 </scm>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000037
Valentin Valchev5bf076e2012-04-05 11:12:23 +000038 <build>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000039
Valentin Valchev5bf076e2012-04-05 11:12:23 +000040 <!-- add UTF-8-to-ISO translated resources -->
41 <resources>
42 <resource>
43 <directory>${basedir}/src/main/resources</directory>
44 </resource>
45 <resource>
46 <directory>target/classes</directory>
47 <includes>
48 <include>OSGI-INF/**</include>
49 </includes>
50 <filtering>false</filtering>
51 </resource>
52 </resources>
53
54 <plugins>
55 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
56 <plugin>
57 <groupId>org.codehaus.mojo</groupId>
58 <artifactId>native2ascii-maven-plugin</artifactId>
59 <version>1.0-beta-1</version>
60 <executions>
61 <execution>
62 <goals>
63 <goal>native2ascii</goal>
64 </goals>
65 <configuration>
66 <encoding>UTF-8</encoding>
67 </configuration>
68 </execution>
69 </executions>
70 </plugin>
71
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75 <version>2.3.4</version>
76 <extensions>true</extensions>
77 <configuration>
78 <instructions>
79 <Bundle-SymbolicName>
80 ${project.artifactId}
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000081 </Bundle-SymbolicName>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000082 <Private-Package>
83 org.apache.felix.webconsole.plugins.upnp.*
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000084 </Private-Package>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000085 <Bundle-Activator>
86 org.apache.felix.webconsole.plugins.upnp.internal.Activator
Valentin Valchevcf6d87f2012-04-04 08:06:18 +000087 </Bundle-Activator>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000088 </instructions>
89 </configuration>
90 </plugin>
91 </plugins>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000092
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000093
Valentin Valchev5bf076e2012-04-05 11:12:23 +000094 </build>
95
96 <dependencies>
97 <dependency>
98 <groupId>javax.servlet</groupId>
99 <artifactId>servlet-api</artifactId>
100 <version>2.4</version>
101 <scope>provided</scope>
102 </dependency>
103
104 <dependency>
105 <groupId>org.osgi</groupId>
106 <artifactId>org.osgi.core</artifactId>
107 <version>4.0.0</version>
108 <scope>provided</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.osgi</groupId>
112 <artifactId>org.osgi.compendium</artifactId>
113 <version>4.0.0</version>
114 <scope>provided</scope>
115 </dependency>
116 <dependency>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>org.apache.felix.webconsole</artifactId>
119 <version>3.1.0</version>
120 <scope>provided</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.json</groupId>
124 <artifactId>json</artifactId>
125 <version>20070829</version>
126 <scope>compile</scope>
127 <optional>true</optional>
128 </dependency>
129 </dependencies>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +0000130</project>