Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setJsonSchema (0.06 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateJsonAgainstSchemaTask.java

        public void setInputFiles(FileCollection inputFiles) {
            this.inputFiles = inputFiles;
        }
    
        @InputFile
        public File getJsonSchema() {
            return jsonSchema;
        }
    
        public void setJsonSchema(File jsonSchema) {
            this.jsonSchema = jsonSchema;
        }
    
        public void setReport(File report) {
            this.report = report;
        }
    
        @OutputFile
        public File getReport() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 28 11:09:58 GMT 2021
    - 5.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ValidateRestSpecPlugin.java

                    }));
                    // This must always be specified precisely, so that
                    // projects other than `rest-api-spec` can use this task.
                    task.setJsonSchema(new File(project.getRootDir(), "rest-api-spec/src/main/resources/schema.json"));
                    task.setReport(new File(project.getBuildDir(), "reports/validateJson.txt"));
                });
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseToolsPlugin.java

                    task.setGroup("Documentation");
                    task.setDescription("Validate that the changelog YAML files comply with the changelog schema");
                    task.setInputFiles(yamlFiles);
                    task.setJsonSchema(new File(project.getRootDir(), RESOURCES + "changelog-schema.json"));
                    task.setReport(new File(project.getBuildDir(), "reports/validateYaml.txt"));
                });
    
    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)
Back to Top