2571776909
Change-Id: I8adc8d58b6d8457ffcf2089c463807aaa578a542
96 lines
2.1 KiB
Python
96 lines
2.1 KiB
Python
include_defs('//lib/maven.defs')
|
|
|
|
VERSION = '9.2.2.v20140723'
|
|
EXCLUDE = ['about.html']
|
|
|
|
maven_jar(
|
|
name = 'servlet',
|
|
id = 'org.eclipse.jetty:jetty-servlet:' + VERSION,
|
|
sha1 = '98d3dde183295cf3356c7ac2c968e5b684fcaba1',
|
|
license = 'Apache2.0',
|
|
deps = [':security'],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'security',
|
|
id = 'org.eclipse.jetty:jetty-security:' + VERSION,
|
|
sha1 = 'b66f8f4b9afd82af24b9f7ffcd5312eb628ee0c9',
|
|
license = 'Apache2.0',
|
|
deps = [':server'],
|
|
exclude = EXCLUDE,
|
|
visibility = [],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'servlets',
|
|
id = 'org.eclipse.jetty:jetty-servlets:' + VERSION,
|
|
sha1 = '457063f20e3676ddd7e7c4dfce90ef74dd54a276',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
visibility = [
|
|
'//tools/eclipse:classpath',
|
|
'//gerrit-gwtdebug:gwtdebug',
|
|
],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'server',
|
|
id = 'org.eclipse.jetty:jetty-server:' + VERSION,
|
|
sha1 = 'dbf076744c15ef879c89464c1d0cfd3a250a9766',
|
|
license = 'Apache2.0',
|
|
exported_deps = [
|
|
':continuation',
|
|
':http',
|
|
],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'jmx',
|
|
id = 'org.eclipse.jetty:jetty-jmx:' + VERSION,
|
|
sha1 = '64b3ff4d0cee0acee363a1c98193332e8f845a6e',
|
|
license = 'Apache2.0',
|
|
exported_deps = [
|
|
':continuation',
|
|
':http',
|
|
],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'continuation',
|
|
id = 'org.eclipse.jetty:jetty-continuation:' + VERSION,
|
|
sha1 = 'a39e8cee9c36d159c6ab3283eb59f8bc2fd16c43',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'http',
|
|
id = 'org.eclipse.jetty:jetty-http:' + VERSION,
|
|
sha1 = '6301fc80fa66d9b1462613fd9c137402663b4d1e',
|
|
license = 'Apache2.0',
|
|
exported_deps = [':io'],
|
|
exclude = EXCLUDE,
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'io',
|
|
id = 'org.eclipse.jetty:jetty-io:' + VERSION,
|
|
sha1 = 'f2237b1705fcac83cedf8390eb4b29ac845cde1c',
|
|
license = 'Apache2.0',
|
|
exported_deps = [':util'],
|
|
exclude = EXCLUDE,
|
|
visibility = [],
|
|
)
|
|
|
|
maven_jar(
|
|
name = 'util',
|
|
id = 'org.eclipse.jetty:jetty-util:' + VERSION,
|
|
sha1 = '2e199b14a57b0336b4f2c9fdf8add525d6112833',
|
|
license = 'Apache2.0',
|
|
exclude = EXCLUDE,
|
|
visibility = [],
|
|
)
|