mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-31 06:15:48 +00:00
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:
@@ -44,6 +44,7 @@ android {
|
|||||||
exclude("**/*.version")
|
exclude("**/*.version")
|
||||||
exclude("**/*.txt")
|
exclude("**/*.txt")
|
||||||
exclude("**/*.kotlin_module")
|
exclude("**/*.kotlin_module")
|
||||||
|
exclude("**/plugin.properties")
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
@@ -117,6 +118,8 @@ dependencies {
|
|||||||
implementation(Dependencies.ThirdParty.jgit) {
|
implementation(Dependencies.ThirdParty.jgit) {
|
||||||
exclude(group = "org.apache.httpcomponents", module = "httpclient")
|
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.jsch)
|
||||||
implementation(Dependencies.ThirdParty.sshj)
|
implementation(Dependencies.ThirdParty.sshj)
|
||||||
implementation(Dependencies.ThirdParty.bouncycastle)
|
implementation(Dependencies.ThirdParty.bouncycastle)
|
||||||
|
@@ -53,6 +53,7 @@ object Dependencies {
|
|||||||
const val fastscroll = "me.zhanghai.android.fastscroll:library:1.1.4"
|
const val fastscroll = "me.zhanghai.android.fastscroll:library:1.1.4"
|
||||||
const val jsch = "com.jcraft:jsch:0.1.55"
|
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 = "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 leakcanary = "com.squareup.leakcanary:leakcanary-android:2.4"
|
||||||
const val plumber = "com.squareup.leakcanary:plumber-android:2.4"
|
const val plumber = "com.squareup.leakcanary:plumber-android:2.4"
|
||||||
const val sshj = "com.hierynomus:sshj:0.29.0"
|
const val sshj = "com.hierynomus:sshj:0.29.0"
|
||||||
|
Reference in New Issue
Block a user