tom | aa49a1e | 2014-09-12 23:11:46 -0700 | [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/xsd/maven-4.0.0.xsd"> |
| 3 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onlab.onos</groupId> |
| 8 | <artifactId>onos</artifactId> |
| 9 | <version>1.0.0-SNAPSHOT</version> |
| 10 | <relativePath>../../../pom.xml</relativePath> |
| 11 | </parent> |
| 12 | |
| 13 | <artifactId>onos-branding</artifactId> |
| 14 | <packaging>bundle</packaging> |
| 15 | |
| 16 | <build> |
| 17 | <plugins> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.felix</groupId> |
| 20 | <artifactId>maven-bundle-plugin</artifactId> |
| 21 | <extensions>true</extensions> |
| 22 | <configuration> |
| 23 | <instructions> |
| 24 | <Bundle-SymbolicName>manual</Bundle-SymbolicName> |
| 25 | <Import-Package>*</Import-Package> |
| 26 | <Private-Package>!*</Private-Package> |
| 27 | <Export-Package> |
| 28 | org.apache.karaf.branding |
| 29 | </Export-Package> |
| 30 | <Spring-Context>*;public-context:=false</Spring-Context> |
| 31 | </instructions> |
| 32 | </configuration> |
| 33 | </plugin> |
| 34 | </plugins> |
| 35 | </build> |
| 36 | |
| 37 | </project> |
| 38 | |