Cross cell support in Buck is considered as experimental feature, with number of open issues: [1], [2], [3]. Moreover, to make Maven Central machinery work, it was needed to create symbolic links in source tree. That broke `buck targets` feature. Remove it for now, and re-consider to add it later. [1] https://github.com/facebook/buck/issues/656 [2] https://github.com/facebook/buck/issues/658 [3] https://github.com/facebook/buck/issues/717 Bug: Issue 3954 Change-Id: Ic621a07771f926001df181b46b2169e214ce208a
		
			
				
	
	
		
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			Python
		
	
	
	
	
	
include_defs('//lib/maven.defs')
 | 
						|
include_defs('//lib/JGIT_VERSION')
 | 
						|
 | 
						|
maven_jar(
 | 
						|
  name = 'jgit-archive',
 | 
						|
  id = 'org.eclipse.jgit:org.eclipse.jgit.archive:' + VERS,
 | 
						|
  sha1 = 'c065b765aac56cdbe531634fdfd829a6ce8bbd0c',
 | 
						|
  license = 'jgit',
 | 
						|
  repository = REPO,
 | 
						|
  deps = ['//lib/jgit/org.eclipse.jgit:jgit'],
 | 
						|
  unsign = True,
 | 
						|
  exclude = [
 | 
						|
    'about.html',
 | 
						|
    'plugin.properties',
 | 
						|
  ],
 | 
						|
 )
 |