Move ow2-asm library definitions to separate BUCK file

Change-Id: If7d59843dcbd534c7712683a6169b82cc9c3f94d
This commit is contained in:
David Pursehouse
2014-06-26 15:01:00 +09:00
parent 0419ff1e3b
commit a089c2e4e1
3 changed files with 38 additions and 34 deletions

View File

@@ -41,9 +41,9 @@ java_library(
'//lib:jsch',
'//lib:juniversalchardet',
'//lib:mime-util',
'//lib:ow2-asm',
'//lib:ow2-asm-tree',
'//lib:ow2-asm-util',
'//lib/ow2:ow2-asm',
'//lib/ow2:ow2-asm-tree',
'//lib/ow2:ow2-asm-util',
'//lib:parboiled-core',
'//lib:pegdown',
'//lib:protobuf',

View File

@@ -56,34 +56,6 @@ maven_jar(
license = 'Apache2.0',
)
maven_jar(
name = 'ow2-asm',
id = 'org.ow2.asm:asm:4.1',
sha1 = 'ad568238ee36a820bd6c6806807e8a14ea34684d',
license = 'ow2',
)
maven_jar(
name = 'ow2-asm-analysis',
id = 'org.ow2.asm:asm-analysis:4.1',
sha1 = '73401033069e4714f57b60aeae02f97210aaa64e',
license = 'ow2',
)
maven_jar(
name = 'ow2-asm-tree',
id = 'org.ow2.asm:asm-tree:4.1',
sha1 = '51085abcc4cb6c6e1cb5551e6f999eb8e31c5b2d',
license = 'ow2',
)
maven_jar(
name = 'ow2-asm-util',
id = 'org.ow2.asm:asm-util:4.1',
sha1 = '6344065cb0f94e2b930a95e6656e040ebc11df08',
license = 'ow2',
)
maven_jar(
name = 'velocity',
id = 'org.apache.velocity:velocity:1.7',
@@ -165,9 +137,9 @@ maven_jar(
license = 'Apache2.0',
deps = [
':parboiled-core',
':ow2-asm-tree',
':ow2-asm-analysis',
':ow2-asm-util',
'//lib/ow2:ow2-asm-tree',
'//lib/ow2:ow2-asm-analysis',
'//lib/ow2:ow2-asm-util',
],
attach_source = False,
visibility = [],

32
lib/ow2/BUCK Normal file
View File

@@ -0,0 +1,32 @@
include_defs('//lib/maven.defs')
VERSION = '4.1'
maven_jar(
name = 'ow2-asm',
id = 'org.ow2.asm:asm:' + VERSION,
sha1 = 'ad568238ee36a820bd6c6806807e8a14ea34684d',
license = 'ow2',
)
maven_jar(
name = 'ow2-asm-analysis',
id = 'org.ow2.asm:asm-analysis:' + VERSION,
sha1 = '73401033069e4714f57b60aeae02f97210aaa64e',
license = 'ow2',
)
maven_jar(
name = 'ow2-asm-tree',
id = 'org.ow2.asm:asm-tree:' + VERSION,
sha1 = '51085abcc4cb6c6e1cb5551e6f999eb8e31c5b2d',
license = 'ow2',
)
maven_jar(
name = 'ow2-asm-util',
id = 'org.ow2.asm:asm-util:' + VERSION,
sha1 = '6344065cb0f94e2b930a95e6656e040ebc11df08',
license = 'ow2',
)