Skip to content

Commit

Permalink
Fix false positive script error
Browse files Browse the repository at this point in the history
Gradle keeps highlighting license import as not existing.
  • Loading branch information
matshou committed Feb 17, 2021
1 parent 2078aae commit 517847b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import com.github.jk1.license.render.*

plugins {
// Apply the application plugin to add support for building a CLI application.
id 'application'
Expand Down Expand Up @@ -210,7 +208,8 @@ jacocoTestReport {
check.dependsOn jacocoTestReport

licenseReport {
renderers = [new InventoryHtmlReportRenderer()]
//noinspection UnnecessaryQualifiedReference
renderers = [new com.github.jk1.license.render.InventoryHtmlReportRenderer()]
}

tasks.register('zomboidVersion', JavaExec.class) {
Expand Down

0 comments on commit 517847b

Please sign in to comment.