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 {
532
532
533
533
defaultTasks ' buildLanguages'
534
534
535
- def listMergedPRs = {
535
+ /* def listMergedPRs = {
536
536
def stdout = new ByteArrayOutputStream()
537
537
exec {
538
538
commandLine 'sh', './listMergedPRs.sh'
539
539
standardOutput = stdout
540
540
}
541
541
stdout.toString()
542
- }
542
+ } */
543
543
544
544
def 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")}"
546
546
def langLibDeps = project. configurations. languageLibs. resolvedConfiguration. lenientConfiguration. allModuleDependencies
547
547
def depsList = langLibDeps. collect {" - `${ it.moduleGroup} :${ it.moduleName} ` : `${ it.moduleVersion} `" }. join(" \n " )
548
548
def releaseNotes = """ Automated Nighly build from ${ currentDate} .
549
549
550
- Included pull requests since last Nightly build:
551
- ${ prCommitsList}
550
+
552
551
553
552
Includes dependencies:
554
553
${ depsList}
You can’t perform that action at this time.
0 commit comments