From 727fdc413c86f544bef9f7ee8220ce4556885668 Mon Sep 17 00:00:00 2001 From: nik Date: Fri, 15 Jul 2016 19:01:14 +0300 Subject: [PATCH] build scripts: corrected error message about not specified library license --- .../intellij/build/impl/LibraryLicensesListGenerator.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/groovy/org/jetbrains/intellij/build/impl/LibraryLicensesListGenerator.groovy b/build/groovy/org/jetbrains/intellij/build/impl/LibraryLicensesListGenerator.groovy index a7b3073da7db..bc625a824b11 100644 --- a/build/groovy/org/jetbrains/intellij/build/impl/LibraryLicensesListGenerator.groovy +++ b/build/groovy/org/jetbrains/intellij/build/impl/LibraryLicensesListGenerator.groovy @@ -133,7 +133,7 @@ class LibraryLicensesListGenerator { errorMessage << "Licenses aren't specified for ${withoutLicenses.size()} libraries:" withoutLicenses.sort(true, String.CASE_INSENSITIVE_ORDER) withoutLicenses.each { errorMessage << it } - errorMessage << "If a library is packaged into IDEA installation information about its license must be added to libLicenses.gant file" + errorMessage << "If a library is packaged into IDEA installation information about its license must be added into one of *LibraryLicenses.groovy files" errorMessage << "If a library is used in tests only change its scope to 'Test'" errorMessage << "If a library is used for compilation only change its scope to 'Provided'" projectBuilder.error(errorMessage.join("\n"))