Add symlink support to JGit (#1016)
* Add symlink support to JGit * Fix a typo Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
a1f3d118c9
commit
5032696cec
2 changed files with 4 additions and 0 deletions
|
@ -44,6 +44,7 @@ android {
|
|||
exclude("**/*.version")
|
||||
exclude("**/*.txt")
|
||||
exclude("**/*.kotlin_module")
|
||||
exclude("**/plugin.properties")
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
@ -117,6 +118,8 @@ dependencies {
|
|||
implementation(Dependencies.ThirdParty.jgit) {
|
||||
exclude(group = "org.apache.httpcomponents", module = "httpclient")
|
||||
}
|
||||
// Loaded dynamically by JGit to provide symlink support
|
||||
implementation(Dependencies.ThirdParty.jgit_java7)
|
||||
implementation(Dependencies.ThirdParty.jsch)
|
||||
implementation(Dependencies.ThirdParty.sshj)
|
||||
implementation(Dependencies.ThirdParty.bouncycastle)
|
||||
|
|
|
@ -53,6 +53,7 @@ object Dependencies {
|
|||
const val fastscroll = "me.zhanghai.android.fastscroll:library:1.1.4"
|
||||
const val jsch = "com.jcraft:jsch:0.1.55"
|
||||
const val jgit = "org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r"
|
||||
const val jgit_java7 = "org.eclipse.jgit:org.eclipse.jgit.java7:3.7.1.201504261725-r"
|
||||
const val leakcanary = "com.squareup.leakcanary:leakcanary-android:2.4"
|
||||
const val plumber = "com.squareup.leakcanary:plumber-android:2.4"
|
||||
const val sshj = "com.hierynomus:sshj:0.29.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue