Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When asked to confirm the properties configuration, press enter.

Code Block
languagetext
groupId: org.meowster.app.table
artifactId: meowster-table
version: 1.0-SNAPSHOT
package: org.meowster.app.table

 

...

 

the choice of archetype in step (2) should be uitab instead of ui:

 

(2) Overlay the UI additional components, using the uitab archetype:

Code Block
$ onos-create-app uitab org.meowster.app.table meowster-table

When asked for the version, accept the suggested default: 1.0-SNAPSHOT, and press enter.

When asked to confirm the properties configuration, press enter.

 

(3) Modify the pom.xml file to mark the module as an ONOS app:

Code Block
$ cd meowster-table
$ vi pom.xml

(3a) Change the description:

Code Block
<description>Meowster Sample ONOS Table-View App</description>

(3b) In the <properties> section, change the app name and origin:

Code Block
<onos.app.name>org.meowster.app.table</onos.app.name>
<onos.app.origin>Meowster, Inc.</onos.app.origin>

Everything else in the pom.xml file should be good to go.

 

 

Building and Installing the App

...