tom

Added Karaf branding bundle

...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
21 <module>of</module> 21 <module>of</module>
22 <module>apps</module> 22 <module>apps</module>
23 <module>features</module> 23 <module>features</module>
24 + <module>tools/package/branding</module>
24 </modules> 25 </modules>
25 26
26 <url>http://onlab.us/</url> 27 <url>http://onlab.us/</url>
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
18 <!-- BigSwitch packet code is designed to use parameter names that override 18 <!-- BigSwitch packet code is designed to use parameter names that override
19 local member names --> 19 local member names -->
20 <suppress files="net.onrc.onos.core.packet.*" checks="HiddenField"/> 20 <suppress files="net.onrc.onos.core.packet.*" checks="HiddenField"/>
21 + <suppress files="org.apache.karaf.branding.*" checks="[a-zA-Z0-9]*"/>
21 22
22 <suppress files=".*" checks="FinalParametersCheck"/> 23 <suppress files=".*" checks="FinalParametersCheck"/>
23 <suppress files=".*" checks="MagicNumbersCheck"/> 24 <suppress files=".*" checks="MagicNumbersCheck"/>
......
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 +
1 +welcome = Welcome to Open Networking Operating System (ONOS)!\r\n\
2 +\u001B[1;31m ____ _ ______ ____ \u001B[0m\r\n\
3 +\u001B[1;31m / __ \\/ |/ / __ \\/ __/ \u001B[0m\r\n\
4 +\u001B[1;31m / /_/ / / /_/ /\\ \\ \u001B[0m\r\n\
5 +\u001B[1;31m \\____/_/|_/\\____/___/ \u001B[0m\r\n\
6 +\u001B[1;31m \u001B[0m\r\n\
7 + \r\n\
8 + Hit '\u001B[1m<tab>\u001B[0m' for a list of available commands\r\n\
9 + and '\u001B[1m[cmd] --help\u001B[0m' for help on a specific command.\r\n\
10 + Hit '\u001B[1m<ctrl-d>\u001B[0m' or type '\u001B[1msystem:shutdown\u001B[0m' or '\u001B[1mlogout\u001B[0m' to shutdown ONOS.\r\n
11 +prompt = \u001B[32monos> \u001B[0m