Skip to content
This repository was archived by the owner on May 3, 2025. It is now read-only.

Commit 9b57e03

Browse files
authored
Use JGit and TreeWalk to find ignored files
1 parent 581091c commit 9b57e03

File tree

15 files changed

+50
-2132
lines changed

15 files changed

+50
-2132
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ version = "1.3.1"
1919

2020
configure<JavaPluginConvention> {
2121
sourceCompatibility = JavaVersion.VERSION_1_8
22+
targetCompatibility = JavaVersion.VERSION_1_8
2223
}
2324

2425
tasks.withType<KotlinCompile> {
@@ -46,8 +47,9 @@ repositories {
4647
}
4748

4849
dependencies {
50+
implementation("org.eclipse.jgit", "org.eclipse.jgit", "5.4.0.201906121030-r")
51+
implementation(kotlin("stdlib-jdk8"))
4952
compileOnly(gradleApi())
50-
compileOnly(kotlin("stdlib-jdk8"))
5153
testImplementation(kotlin("stdlib-jdk8"))
5254
testImplementation("junit", "junit", "4.12")
5355
testImplementation(gradleTestKit())

src/main/java/org/eclipse/jgit/errors/InvalidPatternException.java

Lines changed: 0 additions & 90 deletions
This file was deleted.

src/main/java/org/eclipse/jgit/ignore/FastIgnoreRule.java

Lines changed: 0 additions & 273 deletions
This file was deleted.

0 commit comments

Comments
 (0)