blob: 4088cad61b7b57ff19db885a45e6724008b79f3d [file] [log] [blame]
Valentin Valchev7e6e2042014-12-15 15:03:04 +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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
12
13 <modelVersion>4.0.0</modelVersion>
14 <parent>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>felix-parent</artifactId>
17 <version>2.1</version>
18 <relativePath>../../../pom/pom.xml</relativePath>
19 </parent>
20
21 <artifactId>org.apache.felix.webconsole.plugins.upnp</artifactId>
22 <packaging>bundle</packaging>
Valentin Valchev05c64912015-03-10 13:10:32 +000023 <version>1.0.7-SNAPSHOT</version>
Valentin Valchev7e6e2042014-12-15 15:03:04 +000024
25 <name>Apache Felix Web Console UPnP Plugin</name>
26 <description>
27 This is a plugin for the Apache Felix OSGi web console for displaying
28 UPnP devices.
29 </description>
30
31 <scm>
Valentin Valchev05c64912015-03-10 13:10:32 +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 Valchev7e6e2042014-12-15 15:03:04 +000035 </scm>
36
37 <build>
38
39 <!-- add UTF-8-to-ISO translated resources -->
40 <resources>
41 <resource>
42 <directory>${basedir}/src/main/resources</directory>
43 </resource>
Valentin Valchev7e6e2042014-12-15 15:03:04 +000044 </resources>
45
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-beta-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.3.4</version>
68 <extensions>true</extensions>
69 <configuration>
70 <instructions>
71 <Bundle-SymbolicName>
72 ${project.artifactId}
73 </Bundle-SymbolicName>
74 <Private-Package>
75 org.apache.felix.webconsole.plugins.upnp.*
76 </Private-Package>
77 <Bundle-Activator>
78 org.apache.felix.webconsole.plugins.upnp.internal.Activator
79 </Bundle-Activator>
Valentin Valchev3c06da82014-12-16 09:38:33 +000080 <Include-Resource>{maven-resources},OSGI-INF=target/classes/OSGI-INF</Include-Resource>
Valentin Valchev7e6e2042014-12-15 15:03:04 +000081 </instructions>
82 </configuration>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.rat</groupId>
86 <artifactId>apache-rat-plugin</artifactId>
87 <configuration>
88 <includes>
89 <include>src/**</include>
90 </includes>
91 <excludes>
92 <exclude>src/main/appended-resources/**</exclude>
93 <exclude>src/main/resources/res/jquery-treeview-1.4/**</exclude>
94 <exclude>src/main/resources/res/upnp.*</exclude>
95 </excludes>
96 </configuration>
97 </plugin>
98 </plugins>
99
100
101 </build>
102
103 <dependencies>
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>servlet-api</artifactId>
107 <version>2.4</version>
108 <scope>provided</scope>
109 </dependency>
110
111 <dependency>
112 <groupId>org.osgi</groupId>
113 <artifactId>org.osgi.core</artifactId>
114 <version>4.0.0</version>
115 <scope>provided</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.osgi</groupId>
119 <artifactId>org.osgi.compendium</artifactId>
120 <version>4.0.0</version>
121 <scope>provided</scope>
122 </dependency>
123 <dependency>
124 <groupId>org.apache.felix</groupId>
125 <artifactId>org.apache.felix.webconsole</artifactId>
126 <version>3.1.0</version>
127 <scope>provided</scope>
128 </dependency>
129 <dependency>
130 <groupId>org.json</groupId>
131 <artifactId>json</artifactId>
132 <version>20070829</version>
133 <scope>compile</scope>
134 <optional>true</optional>
135 </dependency>
136 </dependencies>
137</project>