
This is to prepare for implementing genlicenses rule in bazel. Change-Id: I60d79d5b53f9dd05c9f9ebfe6e6f658604c5a037
15 lines
312 B
Python
15 lines
312 B
Python
java_library(
|
|
name = 'sshd',
|
|
exports = ['@sshd//jar'],
|
|
visibility = ['//visibility:public'],
|
|
runtime_deps = [':core'],
|
|
data = ['//lib:LICENSE-Apache2.0'],
|
|
)
|
|
|
|
java_library(
|
|
name = 'core',
|
|
exports = ['@mina_core//jar'],
|
|
visibility = ['//visibility:public'],
|
|
data = ['//lib:LICENSE-Apache2.0'],
|
|
)
|