Skip to content

Commit

Permalink
Fix generate licenses task (after gradle was updated)
Browse files Browse the repository at this point in the history
  • Loading branch information
burnasheva authored and qodana-bot committed Nov 15, 2023
1 parent 8e03ae2 commit c4b3def
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import com.github.jk1.license.render.JsonReportRenderer
import com.github.jk1.license.render.*
import java.nio.file.Paths
import java.util.*

Expand Down Expand Up @@ -112,5 +112,12 @@ teamcity {
}

licenseReport {
renderers = arrayOf(JsonReportRenderer("third-party-libs.json"))
renderers = arrayOf(JsonReportRenderer("third-party-libraries.json"))
}

tasks.serverPlugin {
finalizedBy(project.tasks.getByName("generateLicenseReport"))
}



0 comments on commit c4b3def

Please sign in to comment.