blob: dff46fcc8b05c2359289cd2739f3c05e3427747c [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>
Felix Meschberger8ad600a2012-06-01 13:35:50 +000018 <version>2.1</version>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000019 <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>
Felix Meschberger8ad600a2012-06-01 13:35:50 +000091 <plugin>
92 <groupId>org.apache.rat</groupId>
93 <artifactId>apache-rat-plugin</artifactId>
94 <configuration>
95 <includes>
96 <include>src/**</include>
97 </includes>
98 <excludes>
99 <exclude>src/main/appended-resources/**</exclude>
100 <exclude>src/main/resources/res/jquery-treeview-1.4/**</exclude>
101 <exclude>src/main/resources/res/upnp.*</exclude>
102 </excludes>
103 </configuration>
104 </plugin>
Valentin Valchev5bf076e2012-04-05 11:12:23 +0000105 </plugins>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +0000106
Felix Meschbergerd35ffc32010-03-26 12:59:11 +0000107
Valentin Valchev5bf076e2012-04-05 11:12:23 +0000108 </build>
109
110 <dependencies>
111 <dependency>
112 <groupId>javax.servlet</groupId>
113 <artifactId>servlet-api</artifactId>
114 <version>2.4</version>
115 <scope>provided</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>org.osgi</groupId>
120 <artifactId>org.osgi.core</artifactId>
121 <version>4.0.0</version>
122 <scope>provided</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.osgi</groupId>
126 <artifactId>org.osgi.compendium</artifactId>
127 <version>4.0.0</version>
128 <scope>provided</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.felix</groupId>
132 <artifactId>org.apache.felix.webconsole</artifactId>
133 <version>3.1.0</version>
134 <scope>provided</scope>
135 </dependency>
136 <dependency>
137 <groupId>org.json</groupId>
138 <artifactId>json</artifactId>
139 <version>20070829</version>
140 <scope>compile</scope>
141 <optional>true</optional>
142 </dependency>
143 </dependencies>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +0000144</project>