blob: 771fff43cc49ea8220675ff3989320269a16329b [file] [log] [blame]
Guillaume Nodet6896d702009-09-22 09:11:12 +00001<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">
2
3 <!--
4
5 Licensed to the Apache Software Foundation (ASF) under one or more
6 contributor license agreements. See the NOTICE file distributed with
7 this work for additional information regarding copyright ownership.
8 The ASF licenses this file to You under the Apache License, Version 2.0
9 (the "License"); you may not use this file except in compliance with
10 the License. You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 -->
20
21 <modelVersion>4.0.0</modelVersion>
22
23 <parent>
24 <groupId>org.apache.felix.karaf.webconsole</groupId>
25 <artifactId>webconsole</artifactId>
Guillaume Nodetb551feb2010-06-14 10:01:15 +000026 <version>1.6.2</version>
Guillaume Nodet6896d702009-09-22 09:11:12 +000027 </parent>
28
29 <groupId>org.apache.felix.karaf.webconsole</groupId>
30 <artifactId>org.apache.felix.karaf.webconsole.branding</artifactId>
31 <packaging>bundle</packaging>
Guillaume Nodetb551feb2010-06-14 10:01:15 +000032 <version>1.6.2</version>
Guillaume Nodet6896d702009-09-22 09:11:12 +000033 <name>Apache Felix Karaf :: Web Console :: Branding</name>
34
35 <description>Apache Felix Karaf branding for the Apache Felix Web Console. This fragment
36 attaches to the org.apache.felix.webconsole bundle to provide branding
37 through the /META-INF/webconsole.properties.
38 </description>
39
40 <properties>
41 <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
42 </properties>
43
Guillaume Nodet56230732010-06-09 15:49:35 +000044 <dependencies>
45 <dependency>
46 <groupId>org.apache.felix</groupId>
47 <artifactId>org.apache.felix.webconsole</artifactId>
48 <scope>provided</scope>
49 </dependency>
50 </dependencies>
51
Guillaume Nodet6896d702009-09-22 09:11:12 +000052 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
Chris Custine07fd5f82010-05-13 23:37:43 +000057 <version>${felix.plugin.version}</version>
Guillaume Nodet6896d702009-09-22 09:11:12 +000058 <extensions>true</extensions>
59 <configuration>
60 <instructions>
61 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
62 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-karaf.html</Bundle-DocURL>
Guillaume Nodetae89ee62010-04-30 15:44:47 +000063 <Fragment-Host>org.apache.felix.webconsole;bundle-version="[3,4)"</Fragment-Host>
Guillaume Nodet6896d702009-09-22 09:11:12 +000064 <Export-Package>!*</Export-Package>
65 </instructions>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70
71
72</project>