030d8ff23d
The new Jetty version fixes the JetLeak vulnerability remote leakage of shared buffers in Jetty [1]. [1] http://dev.eclipse.org/mhonarc/lists/jetty-announce/msg00075.html Change-Id: I40b38b0be153a746184f11a7e8da32d9baa8368f Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
96 lines
2.1 KiB
Python
96 lines
2.1 KiB
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERSION = '9.2.9.v20150224'
|
|
EXCLUDE = ['about.html']
|
|
|
|
maven_jar(
|
|
name = 'servlet',
|
|
id = 'org.eclipse.jetty:jetty-servlet:' + VERSION,
|
|
sha1 = '1797875a3cc524d181733f323866a5f7bbca03a7',
|
|
license = 'Apache2.0',
|
|
deps = [':security'],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'security',
|
|
id = 'org.eclipse.jetty:jetty-security:' + VERSION,
|
|
sha1 = '1747a52b01afbf96b58b0ae0f352185560768fc2',
|
|
license = 'Apache2.0',
|
|
deps = [':server'],
|
|
exclude = EXCLUDE,
|
|
visibility = [],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'servlets',
|
|
id = 'org.eclipse.jetty:jetty-servlets:' + VERSION,
|
|
sha1 = '9b04f638c23a4db7c8e2dbfe31ab7370ce972ade',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
visibility = [
|
|
'//tools/eclipse:classpath',
|
|
'//gerrit-gwtdebug:gwtdebug',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'server',
|
|
id = 'org.eclipse.jetty:jetty-server:' + VERSION,
|
|
sha1 = 'd30a52e992c3484569f58763f55097a1da3202ee',
|
|
license = 'Apache2.0',
|
|
exported_deps = [
|
|
':continuation',
|
|
':http',
|
|
],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'jmx',
|
|
id = 'org.eclipse.jetty:jetty-jmx:' + VERSION,
|
|
sha1 = 'e0a9df505fbcc7c0481209325a106b922097468d',
|
|
license = 'Apache2.0',
|
|
exported_deps = [
|
|
':continuation',
|
|
':http',
|
|
],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'continuation',
|
|
id = 'org.eclipse.jetty:jetty-continuation:' + VERSION,
|
|
sha1 = '476cae89c420170549b4851ed58dca25f349d16d',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'http',
|
|
id = 'org.eclipse.jetty:jetty-http:' + VERSION,
|
|
sha1 = '8b30ddc8304df24a36efbfa267acc24b7403b692',
|
|
license = 'Apache2.0',
|
|
exported_deps = [':io'],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'io',
|
|
id = 'org.eclipse.jetty:jetty-io:' + VERSION,
|
|
sha1 = '06a4a23ee9decf2762d052bc2ae0501c08cc9023',
|
|
license = 'Apache2.0',
|
|
exported_deps = [':util'],
|
|
exclude = EXCLUDE,
|
|
visibility = [],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'util',
|
|
id = 'org.eclipse.jetty:jetty-util:' + VERSION,
|
|
sha1 = 'b5fb774a02158e9f66fed949581159a8d0dfcbe1',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
visibility = [],
|
|
)
|