- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for ReleaseNotes (0.11 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
// These are all helper methods for configuring the parts of the documentation (DSL ref, javadoc, user manual, etc). public ReleaseNotes getReleaseNotes() { return releaseNotes; } public void releaseNotes(Action<? super ReleaseNotes> action) { action.execute(releaseNotes); } public UserManual getUserManual() { return userManual; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 4.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java
}); extension.releaseNotes(releaseNotes -> { releaseNotes.getMarkdownFile().convention(extension.getSourceRoot().file("release/notes.md")); releaseNotes.getRenderedDocumentation().convention(releaseNotesPostProcess.flatMap(DecorateReleaseNotes::getDestinationFile)); releaseNotes.getBaseCssFile().convention(extension.getSourceRoot().file("css/base.css"));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 08:15:16 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt
val releaseNotesLines: List<String> = releaseNotes.asFile.get().readLines() val contributorSectionBeginIndex = releaseNotesLines.indexOfFirst { it.startsWith("We would like to thank the following community members for their contributions to this release of Gradle:") } + 1 if (contributorSectionBeginIndex == 0) { error("Can't find the contributors section in the release notes $releaseNotes.") }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 5.6K bytes - Viewed (0) -
.github/pull_request_template.md
- [ ] Virtual Machine - [ ] Control Plane Revisions **Please check any characteristics that apply to this pull request.**
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jun 24 18:27:30 UTC 2024 - 806 bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt
if (contributorsInPullRequestsButNotInReleaseNotes.isNotEmpty()) { error( """The contributors in the release notes $releaseNotes don't match the contributors in the PRs. Release notes: $contributorsInReleaseNotes Pull requests: $contributorsFromPullRequests
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 1.9K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateContributorsInReleaseNotes.kt
val sortedContributors = contributorsToUpdate.entries.sortedBy { (it.value.name ?: it.key).toLowerCase() } val (linesBeforeContributors, _, linesAfterContributors) = parseReleaseNotes() releaseNotes.asFile.get().writeText(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Aug 21 11:42:19 UTC 2024 - 2K bytes - Viewed (0)