mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 10:21:52 +02:00
Modified SSH key handling. Now using BouncyCastle. (Update #2) Change-Id: I27d8aefba6ed5548b9caa592fb5787cf98dfb5b6
24 lines
484 B
Python
24 lines
484 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:ganymed-ssh2',
|
|
'//protocols/netconf/api:onos-protocols-netconf-api',
|
|
'//cli:onos-cli',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//lib:sshd-core',
|
|
'//lib:bcpkix-jdk15on',
|
|
'//lib:bcprov-jdk15on',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//utils/osgi:onlab-osgi-tests',
|
|
'//core/api:onos-api-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|
|
|