blob: 205fd1bc85bfbd82fea6298261723f9f043510c2 [file] [log] [blame]
Jimmy Yanda878fc2016-09-02 16:32:01 -07001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//core/store/serializers:onos-core-serializers',
4 '//apps/optical-model:onos-apps-optical-model',
5]
6
7TEST_DEPS = [
8 '//lib:TEST_REST',
9 '//core/api:onos-api-tests',
10]
11
12osgi_jar_with_tests (
13 deps = COMPILE_DEPS,
14 test_deps = TEST_DEPS,
15)
16
17onos_app (
18 title = 'ROADM App',
19 category = 'Optical',
20 url = 'http://onosproject.org',
21 description = """This application provides an interface and web GUI for monitoring
22 and configuring power on ROADM devices.""",
23 required_apps = [ 'org.onosproject.optical-model' ],
24)