mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
Updated cordvtn, dhcp, fwd, onos-api, of-api, onlab-rest, onos-rest, onos-gui Also, fixed checkstyle error print Change-Id: I9d6ab76791e8603678079067a3b4e007ca7c4667
36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:javax.ws.rs-api',
|
|
'//lib:servlet-api',
|
|
'//lib:jetty-websocket',
|
|
'//lib:jetty-util',
|
|
'//lib:jersey-media-multipart',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//incubator/net:onos-incubator-net',
|
|
'//utils/rest:onlab-rest',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST',
|
|
]
|
|
|
|
RESOURCES = [
|
|
'WEB-INF/classes/index.html=src/main/webapp/index.html',
|
|
'WEB-INF/classes/login.html=src/main/webapp/login.html',
|
|
'WEB-INF/classes/error.html=src/main/webapp/error.html',
|
|
'WEB-INF/classes/not-ready.html=src/main/webapp/not-ready.html',
|
|
'WEB-INF/classes/onos.js=src/main/webapp/onos.js',
|
|
'WEB-INF/classes/nav.html=src/main/webapp/nav.html',
|
|
'WEB-INF/classes/app/view=src/main/webapp/app/view',
|
|
'WEB-INF/classes/raw=src/main/webapp/raw',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
name = 'onos-gui',
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
include_resources = ','.join(RESOURCES),
|
|
web_context = '/onos/ui',
|
|
)
|