mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 18:02:05 +02:00
In this submission: * Setup/teardown multicast route according to SinkAdded/SinkRemoved event - ingressVlan and egressVlan is configurable through network config * Change behavior of OFDPA VLAN assignment - Always use the VLAN in metadata if present * Bugfix of writing immutable object NOT in this submission (coming soon): * Error handling (e.g. link/device failure recovery) Change-Id: I9be11af04eb2d6456b865c7e59e96cc02370f846
26 lines
555 B
Python
26 lines
555 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//lib:javax.ws.rs-api',
|
|
'//cli:onos-cli',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|
|
onos_app (
|
|
title = 'Segment Routing App',
|
|
category = 'Traffic Steering',
|
|
url = 'http://onosproject.org',
|
|
description = 'Segment routing application.',
|
|
)
|