Includes the following fixes since 5.1.2.201810061102-r: - SubmoduleValidator: Permit missing path or url - Fix file handle leak in ObjectDownloadListener.onWritePossible - ssh: Prefer algorithms of the known host keys Change-Id: Iab12e96052f7bb4ad6a3715282d8a5077801f3ae
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
load("//tools/bzl:maven_jar.bzl", "GERRIT", "MAVEN_CENTRAL", "MAVEN_LOCAL", "maven_jar")
 | 
						|
 | 
						|
_JGIT_VERS = "5.1.3.201810200350-r"
 | 
						|
 | 
						|
_DOC_VERS = _JGIT_VERS  # Set to _JGIT_VERS unless using a snapshot
 | 
						|
 | 
						|
JGIT_DOC_URL = "http://download.eclipse.org/jgit/site/" + _DOC_VERS + "/apidocs"
 | 
						|
 | 
						|
_JGIT_REPO = MAVEN_CENTRAL  # Leave here even if set to MAVEN_CENTRAL.
 | 
						|
 | 
						|
# set this to use a local version.
 | 
						|
# "/home/<user>/projects/jgit"
 | 
						|
LOCAL_JGIT_REPO = ""
 | 
						|
 | 
						|
def jgit_repos():
 | 
						|
    if LOCAL_JGIT_REPO:
 | 
						|
        native.local_repository(
 | 
						|
            name = "jgit",
 | 
						|
            path = LOCAL_JGIT_REPO,
 | 
						|
        )
 | 
						|
        jgit_maven_repos_dev()
 | 
						|
    else:
 | 
						|
        jgit_maven_repos()
 | 
						|
 | 
						|
def jgit_maven_repos_dev():
 | 
						|
    # Transitive dependencies from JGit's WORKSPACE.
 | 
						|
    maven_jar(
 | 
						|
        name = "hamcrest-library",
 | 
						|
        artifact = "org.hamcrest:hamcrest-library:1.3",
 | 
						|
        sha1 = "4785a3c21320980282f9f33d0d1264a69040538f",
 | 
						|
    )
 | 
						|
    maven_jar(
 | 
						|
        name = "jzlib",
 | 
						|
        artifact = "com.jcraft:jzlib:1.1.1",
 | 
						|
        sha1 = "a1551373315ffc2f96130a0e5704f74e151777ba",
 | 
						|
    )
 | 
						|
 | 
						|
def jgit_maven_repos():
 | 
						|
    maven_jar(
 | 
						|
        name = "jgit-lib",
 | 
						|
        artifact = "org.eclipse.jgit:org.eclipse.jgit:" + _JGIT_VERS,
 | 
						|
        repository = _JGIT_REPO,
 | 
						|
        sha1 = "f270dbd1d792d5ad06074abe018a18644c90b60e",
 | 
						|
        src_sha1 = "00e24ee2b721040edbb8520d705607a7f7bafd64",
 | 
						|
        unsign = True,
 | 
						|
    )
 | 
						|
    maven_jar(
 | 
						|
        name = "jgit-servlet",
 | 
						|
        artifact = "org.eclipse.jgit:org.eclipse.jgit.http.server:" + _JGIT_VERS,
 | 
						|
        repository = _JGIT_REPO,
 | 
						|
        sha1 = "360405244c28b537f0eafdc0b9d9f3753503d981",
 | 
						|
        unsign = True,
 | 
						|
    )
 | 
						|
    maven_jar(
 | 
						|
        name = "jgit-archive",
 | 
						|
        artifact = "org.eclipse.jgit:org.eclipse.jgit.archive:" + _JGIT_VERS,
 | 
						|
        repository = _JGIT_REPO,
 | 
						|
        sha1 = "08e10921fcc75ead2736dd5bf099ba8e2ed8a3fb",
 | 
						|
    )
 | 
						|
    maven_jar(
 | 
						|
        name = "jgit-junit",
 | 
						|
        artifact = "org.eclipse.jgit:org.eclipse.jgit.junit:" + _JGIT_VERS,
 | 
						|
        repository = _JGIT_REPO,
 | 
						|
        sha1 = "1dc8f86bba3c461cb90c9dc3e91bf343889ca684",
 | 
						|
        unsign = True,
 | 
						|
    )
 | 
						|
 | 
						|
def jgit_dep(name):
 | 
						|
    mapping = {
 | 
						|
        "@jgit-junit//jar": "@jgit//org.eclipse.jgit.junit:junit",
 | 
						|
        "@jgit-lib//jar:src": "@jgit//org.eclipse.jgit:libjgit-src.jar",
 | 
						|
        "@jgit-lib//jar": "@jgit//org.eclipse.jgit:jgit",
 | 
						|
        "@jgit-servlet//jar": "@jgit//org.eclipse.jgit.http.server:jgit-servlet",
 | 
						|
        "@jgit-archive//jar": "@jgit//org.eclipse.jgit.archive:jgit-archive",
 | 
						|
    }
 | 
						|
 | 
						|
    if LOCAL_JGIT_REPO:
 | 
						|
        return mapping[name]
 | 
						|
    else:
 | 
						|
        return name
 |