Also, bump jruby-complete in BUCK to the same version (9.1.5.0). Change-Id: I67b6c74680faf2630afb965b81d71026029d5385
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
include_defs('//lib/maven.defs')
 | 
						|
 | 
						|
java_binary(
 | 
						|
  name = 'asciidoc',
 | 
						|
  main_class = 'AsciiDoctor',
 | 
						|
  deps = [':asciidoc_lib'],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_library(
 | 
						|
  name = 'asciidoc_lib',
 | 
						|
  srcs = ['java/AsciiDoctor.java'],
 | 
						|
  deps = [
 | 
						|
    ':asciidoctor',
 | 
						|
    ':jruby',
 | 
						|
    '//lib:args4j',
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib/log:api',
 | 
						|
    '//lib/log:nop',
 | 
						|
  ],
 | 
						|
  visibility = ['//tools/eclipse:classpath'],
 | 
						|
)
 | 
						|
 | 
						|
java_binary(
 | 
						|
  name = 'doc_indexer',
 | 
						|
  main_class = 'DocIndexer',
 | 
						|
  deps = [':doc_indexer_lib'],
 | 
						|
  visibility = ['PUBLIC'],
 | 
						|
)
 | 
						|
 | 
						|
java_library(
 | 
						|
  name = 'doc_indexer_lib',
 | 
						|
  srcs = ['java/DocIndexer.java'],
 | 
						|
  deps = [
 | 
						|
    ':asciidoc_lib',
 | 
						|
    '//gerrit-server:constants',
 | 
						|
    '//lib:args4j',
 | 
						|
    '//lib:guava',
 | 
						|
    '//lib/lucene:lucene-analyzers-common',
 | 
						|
    '//lib/lucene:lucene-core-and-backward-codecs',
 | 
						|
  ],
 | 
						|
  visibility = ['//tools/eclipse:classpath'],
 | 
						|
)
 | 
						|
 | 
						|
maven_jar(
 | 
						|
  name = 'asciidoctor',
 | 
						|
  id = 'org.asciidoctor:asciidoctorj:1.5.4.1',
 | 
						|
  sha1 = 'f7ddfb2bbed2f8da3f9ad0d1a5514f04b4274a5a',
 | 
						|
  license = 'asciidoctor',
 | 
						|
  visibility = [],
 | 
						|
  attach_source = False,
 | 
						|
)
 | 
						|
 | 
						|
maven_jar(
 | 
						|
  name = 'jruby',
 | 
						|
  id = 'org.jruby:jruby-complete:9.1.5.0',
 | 
						|
  sha1 = '00d0003e99da3c4d830b12c099691ce910c84e39',
 | 
						|
  license = 'DO_NOT_DISTRIBUTE',
 | 
						|
  visibility = [],
 | 
						|
  attach_source = False,
 | 
						|
)
 |