Gert Vanthienen | 1ba9a05 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <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">
|
| 3 |
|
| 4 | <!--
|
| 5 |
|
| 6 | Licensed to the Apache Software Foundation (ASF) under one or more
|
| 7 | contributor license agreements. See the NOTICE file distributed with
|
| 8 | this work for additional information regarding copyright ownership.
|
| 9 | The ASF licenses this file to You under the Apache License, Version 2.0
|
| 10 | (the "License"); you may not use this file except in compliance with
|
| 11 | the License. You may obtain a copy of the License at
|
| 12 |
|
| 13 | http://www.apache.org/licenses/LICENSE-2.0
|
| 14 |
|
| 15 | Unless required by applicable law or agreed to in writing, software
|
| 16 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 18 | See the License for the specific language governing permissions and
|
| 19 | limitations under the License.
|
| 20 | -->
|
| 21 |
|
| 22 | <modelVersion>4.0.0</modelVersion>
|
| 23 |
|
| 24 | <parent>
|
| 25 | <groupId>org.apache.felix.karaf.webconsole</groupId>
|
| 26 | <artifactId>webconsole</artifactId>
|
Guillaume Nodet | abe5600 | 2009-08-25 09:03:55 +0000 | [diff] [blame] | 27 | <version>0.9.0-SNAPSHOT</version>
|
Gert Vanthienen | 1ba9a05 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 28 | </parent>
|
| 29 |
|
| 30 | <groupId>org.apache.felix.karaf.webconsole</groupId>
|
| 31 | <artifactId>org.apache.felix.karaf.webconsole.branding</artifactId>
|
| 32 | <packaging>bundle</packaging>
|
Guillaume Nodet | abe5600 | 2009-08-25 09:03:55 +0000 | [diff] [blame] | 33 | <version>0.9.0-SNAPSHOT</version>
|
Gert Vanthienen | 1ba9a05 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 34 | <name>Apache Felix Karaf :: Web Console :: Branding</name>
|
| 35 |
|
| 36 | <description>Apache Felix Karaf branding for the Apache Felix Web Console. This fragment
|
| 37 | attaches to the org.apache.felix.webconsole bundle to provide branding
|
| 38 | through the /META-INF/webconsole.properties.
|
| 39 | </description>
|
| 40 |
|
Guillaume Nodet | c0d9772 | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 41 | <properties>
|
| 42 | <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory>
|
| 43 | </properties>
|
Gert Vanthienen | 1ba9a05 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 44 |
|
| 45 | <build>
|
| 46 | <plugins>
|
| 47 | <plugin>
|
| 48 | <groupId>org.apache.felix</groupId>
|
| 49 | <artifactId>maven-bundle-plugin</artifactId>
|
| 50 | <extensions>true</extensions>
|
| 51 | <configuration>
|
| 52 | <instructions>
|
Guillaume Nodet | e6dea12 | 2009-08-17 15:16:54 +0000 | [diff] [blame] | 53 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
|
Gert Vanthienen | 1ba9a05 | 2009-08-06 21:36:13 +0000 | [diff] [blame] | 54 | <Bundle-DocURL>http://felix.apache.org/site/apache-felix-karaf.html</Bundle-DocURL>
|
| 55 | <Fragment-Host>org.apache.felix.webconsole</Fragment-Host>
|
| 56 | <Export-Package>!*</Export-Package>
|
| 57 | </instructions>
|
| 58 | </configuration>
|
| 59 | </plugin>
|
| 60 | </plugins>
|
| 61 | </build>
|
| 62 |
|
| 63 |
|
| 64 | </project>
|