mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-14 17:01:02 +02:00
Adding code to support RESTCONF protocol as one of the supported SBI protocols of ONOS. This RESTCONF SBI extends the current REST SBI protocl and adds some new APIs/functinalities so that a provider can subscribe/register to an external restconf server to receive notification stream. Change-Id: I21bf0d0f0394cf788e066d743b3ade04735fe07e
19 lines
413 B
Python
19 lines
413 B
Python
COMPILE_DEPS = [
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//lib:CORE_DEPS',
|
|
'//lib:jersey-client',
|
|
'//lib:jersey-common',
|
|
'//lib:httpclient-osgi',
|
|
'//lib:httpcore-osgi',
|
|
'//lib:javax.ws.rs-api',
|
|
'//lib:hk2-api',
|
|
'//lib:jersey-guava',
|
|
'//lib:aopalliance-repackaged',
|
|
'//lib:javax.inject',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
)
|