Skip to content

Commit

Permalink
fix license check
Browse files Browse the repository at this point in the history
Signed-off-by: OlegDokuka <oleh@moderne.io>
  • Loading branch information
OlegDokuka committed Oct 17, 2024
1 parent 2c95204 commit aec0a68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions rewrite-javascript/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.hierynomus.gradle.license.tasks.LicenseCheck

plugins {
id("org.openrewrite.build.language-library")
}
Expand All @@ -24,6 +26,10 @@ dependencies {
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:latest.release")
}

tasks.withType<LicenseCheck> {
include("*.java")
}

// FIXME disable all tests for now until the parser tests have been moved to JavaScript
tasks.withType<Test> {
enabled = false
Expand Down

0 comments on commit aec0a68

Please sign in to comment.