Skip to content

Commit

Permalink
Add .kotlin/ to RAT excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
eskatos committed Jan 13, 2025
1 parent be78642 commit 78f7537
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ repositories {
}

dependencies {
compileOnly("org.apache.rat:apache-rat:0.15")
compileOnly("org.apache.rat:apache-rat:0.16.1")

testImplementation("junit:junit:4.13.2")
testImplementation(gradleTestKit())
Expand Down Expand Up @@ -135,7 +135,8 @@ tasks.rat {
exclude(
"README.md", "CODE_OF_CONDUCT.md",
".gradletasknamecache", "gradle/wrapper/**", "gradlew*", "build/**", // Gradle
".nb-gradle/**", "*.iml", "*.ipr", "*.iws", "*.idea/**", ".editorconfig" // IDEs
".kotlin/**", // Kotlin
".nb-gradle/**", "*.iml", "*.ipr", "*.iws", "*.idea/**", ".editorconfig", // IDEs
)
notCompatibleWithConfigurationCache("https://github.com/eskatos/creadur-rat-gradle/issues/23")
}

0 comments on commit 78f7537

Please sign in to comment.