blob: 5630bc1a9b3e3d93b77e1e6390b1c368e157e6b5 [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>
23 <version>1.0.4</version>
24
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>
32 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.webconsole.plugins.upnp-1.0.4</connection>
33 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.webconsole.plugins.upnp-1.0.4</developerConnection>
34 <url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.webconsole.plugins.upnp-1.0.4</url>
35 </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>
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}
80 </Bundle-SymbolicName>
81 <Private-Package>
82 org.apache.felix.webconsole.plugins.upnp.*
83 </Private-Package>
84 <Bundle-Activator>
85 org.apache.felix.webconsole.plugins.upnp.internal.Activator
86 </Bundle-Activator>
87 </instructions>
88 </configuration>
89 </plugin>
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>
104 </plugins>
105
106
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>
143</project>