tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
alshabib | ab98466 | 2014-12-04 18:56:18 -0800 | [diff] [blame] | 2 | <!-- |
| 3 | ~ Copyright 2014 Open Networking Laboratory |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 17 | <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/xsd/maven-4.0.0.xsd"> |
| 18 | |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <parent> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 22 | <groupId>org.onosproject</groupId> |
tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 23 | <artifactId>onos</artifactId> |
Brian O'Connor | 880dc20d | 2015-12-16 22:53:14 -0800 | [diff] [blame] | 24 | <version>1.5.0-SNAPSHOT</version> |
tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 25 | <relativePath>../../../pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-branding</artifactId> |
| 29 | <packaging>bundle</packaging> |
Ayaka Koshibe | 41ee2f0 | 2015-07-01 16:06:25 -0700 | [diff] [blame] | 30 | <description>Custom Karaf CLI motd</description> |
tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [diff] [blame] | 31 | <build> |
| 32 | <plugins> |
| 33 | <plugin> |
| 34 | <groupId>org.apache.felix</groupId> |
| 35 | <artifactId>maven-bundle-plugin</artifactId> |
| 36 | <extensions>true</extensions> |
| 37 | <configuration> |
| 38 | <instructions> |
| 39 | <Bundle-SymbolicName>manual</Bundle-SymbolicName> |
| 40 | <Import-Package>*</Import-Package> |
| 41 | <Private-Package>!*</Private-Package> |
| 42 | <Export-Package> |
| 43 | org.apache.karaf.branding |
| 44 | </Export-Package> |
| 45 | <Spring-Context>*;public-context:=false</Spring-Context> |
| 46 | </instructions> |
| 47 | </configuration> |
| 48 | </plugin> |
| 49 | </plugins> |
| 50 | </build> |
| 51 | |
| 52 | </project> |
| 53 | |