Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ValidateChangelogEntryTask (0.16 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ValidateChangelogEntryTask.java

    /**
     * Performs additional checks on changelog files, beyond whether they conform to the schema.
     */
    public class ValidateChangelogEntryTask extends DefaultTask {
        private final ConfigurableFileCollection changelogs;
        private final ProjectLayout projectLayout;
    
        @Inject
        public ValidateChangelogEntryTask(ObjectFactory objectFactory, ProjectLayout projectLayout) {
            this.changelogs = objectFactory.fileCollection();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 3.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseToolsPlugin.java

                    task.setReport(new File(project.getBuildDir(), "reports/validateYaml.txt"));
                });
    
            final TaskProvider<ValidateChangelogEntryTask> validateChangelogsTask = project.getTasks()
                .register("validateChangelogs", ValidateChangelogEntryTask.class, task -> {
                    task.setGroup("Documentation");
                    task.setDescription("Validate that all changelog YAML files are well-formed");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 24 10:57:02 GMT 2021
    - 4.8K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

    import java.util.Objects;
    import java.util.stream.Collectors;
    
    /**
     * This class models the contents of a changelog YAML file. We validate it using a
     * JSON Schema, as well as some programmatic checks in {@link ValidateChangelogEntryTask}.
     * <ul>
     *   <li><code>buildSrc/src/main/resources/changelog-schema.json</code></li>
     *   <li><a href="https://json-schema.org/understanding-json-schema/">Understanding JSON Schema</a></li>
     * </ul>
     */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
Back to Top