blob: f58fc943f4147328ba57f2ccd57f541002eff27d [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. -->
Felix Meschberger0c4d5182012-06-01 14:26:26 +000011<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 Meschbergerd35ffc32010-03-26 12:59:11 +000012
Valentin Valchev5bf076e2012-04-05 11:12:23 +000013 <modelVersion>4.0.0</modelVersion>
14 <parent>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>felix-parent</artifactId>
Felix Meschberger8ad600a2012-06-01 13:35:50 +000017 <version>2.1</version>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000018 <relativePath>../../../pom/pom.xml</relativePath>
19 </parent>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000020
Valentin Valchev5bf076e2012-04-05 11:12:23 +000021 <artifactId>org.apache.felix.webconsole.plugins.upnp</artifactId>
22 <packaging>bundle</packaging>
Felix Meschbergerdb7bad12012-06-01 14:26:42 +000023 <version>1.0.3-SNAPSHOT</version>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000024
Valentin Valchev5bf076e2012-04-05 11:12:23 +000025 <name>Apache Felix Web Console UPnP Plugin</name>
26 <description>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000027 This is a plugin for the Apache Felix OSGi web console for displaying
28 UPnP devices.
29 </description>
30
Valentin Valchev5bf076e2012-04-05 11:12:23 +000031 <scm>
Felix Meschbergerdb7bad12012-06-01 14:26:42 +000032 <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 Valchev5bf076e2012-04-05 11:12:23 +000035 </scm>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000036
Valentin Valchev5bf076e2012-04-05 11:12:23 +000037 <build>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000038
Valentin Valchev5bf076e2012-04-05 11:12:23 +000039 <!-- 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 Meschbergerd35ffc32010-03-26 12:59:11 +000080 </Bundle-SymbolicName>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000081 <Private-Package>
82 org.apache.felix.webconsole.plugins.upnp.*
Felix Meschbergerd35ffc32010-03-26 12:59:11 +000083 </Private-Package>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000084 <Bundle-Activator>
85 org.apache.felix.webconsole.plugins.upnp.internal.Activator
Valentin Valchevcf6d87f2012-04-04 08:06:18 +000086 </Bundle-Activator>
Valentin Valchev5bf076e2012-04-05 11:12:23 +000087 </instructions>
88 </configuration>
89 </plugin>
Felix Meschberger8ad600a2012-06-01 13:35:50 +000090 <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 Valchev5bf076e2012-04-05 11:12:23 +0000104 </plugins>
Felix Meschbergerd35ffc32010-03-26 12:59:11 +0000105
Felix Meschbergerd35ffc32010-03-26 12:59:11 +0000106
Valentin Valchev5bf076e2012-04-05 11:12:23 +0000107 </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 Meschbergerd35ffc32010-03-26 12:59:11 +0000143</project>