blob: 41d7956e4ab134b65d530e2162e20a8362ad2de7 [file] [log] [blame]
Laszlo Pappda059e72017-10-23 11:39:31 +01001COMPILE_DEPS = [
2 '//lib:CORE_DEPS',
3 '//lib:JACKSON',
4 '//core/store/serializers:onos-core-serializers',
5 '//utils/rest:onlab-rest',
6 '//lib:javax.ws.rs-api',
7]
8
9TEST_DEPS = [
10 '//lib:TEST_REST',
11 '//core/api:onos-api-tests',
12]
13
14osgi_jar_with_tests (
15 deps = COMPILE_DEPS,
16 test_deps = TEST_DEPS,
17 web_context = '/onos/powermanagement',
18 api_title = 'Power Management API',
19 api_version = '1.0',
20 api_description = 'REST API for Power Management',
21 api_package = 'org.onosproject.powermanagement',
22)
23
24onos_app (
25 title = 'Power Management',
26 category = 'Monitoring',
27 url = 'http://onosproject.org',
28 description = 'This application provides northbound interfaces for monitoring and ' +
29 'configuring power.',
30)