File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -532,23 +532,22 @@ publishing {
532532
533533defaultTasks ' buildLanguages'
534534
535- def listMergedPRs = {
535+ /* def listMergedPRs = {
536536 def stdout = new ByteArrayOutputStream()
537537 exec {
538538 commandLine 'sh', './listMergedPRs.sh'
539539 standardOutput = stdout
540540 }
541541 stdout.toString()
542- }
542+ } */
543543
544544def currentDate = LocalDate . now(). format(DateTimeFormatter . ofLocalizedDate(FormatStyle . FULL ))
545- def prCommitsList = " ${ -> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")} "
545+ // def prCommitsList = "${-> listMergedPRs().readLines().collect { line -> "- $line"}.join("\n")}"
546546def langLibDeps = project. configurations. languageLibs. resolvedConfiguration. lenientConfiguration. allModuleDependencies
547547def depsList = langLibDeps. collect {" - `${ it.moduleGroup} :${ it.moduleName} ` : `${ it.moduleVersion} `" }. join(" \n " )
548548def releaseNotes = """ Automated Nighly build from ${ currentDate} .
549549
550- Included pull requests since last Nightly build:
551- ${ prCommitsList}
550+
552551
553552Includes dependencies:
554553${ depsList}
You can’t perform that action at this time.
0 commit comments