Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for RestResourcesPlugin (0.13 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestResourcesPlugin.java

     * spec and YAML based rest tests.
     * </p>
     * <strong>Rest API specification:</strong> <br>
     * When the {@link RestResourcesPlugin} has been applied the {@link CopyRestApiTask} will automatically copy the core Rest API specification
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestApiTask.java

    /**
     * Copies the files needed for the Rest YAML specs to the current projects test resources output directory.
     * This is intended to be be used from {@link RestResourcesPlugin} since the plugin wires up the needed
     * configurations and custom extensions.
     *
     * @see RestResourcesPlugin
     */
    public class CopyRestApiTask extends DefaultTask {
        private static final String REST_API_PREFIX = "rest-api-spec/api";
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 7.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

    /**
     * Copies the Rest YAML test to the current projects test resources output directory.
     * This is intended to be be used from {@link RestResourcesPlugin} since the plugin wires up the needed
     * configurations and custom extensions.
     *
     * @see RestResourcesPlugin
     */
    public class CopyRestTestsTask extends DefaultTask {
        private static final String REST_TEST_PREFIX = "rest-api-spec/test";
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/InternalYamlRestTestPlugin.java

                        .named(RestResourcesPlugin.COPY_REST_API_SPECS_TASK)
                        .flatMap(CopyRestApiTask::getOutputResourceDir)
                );
    
            yamlTestSourceSet.getOutput()
                .dir(
                    project.getTasks()
                        .withType(CopyRestTestsTask.class)
                        .named(RestResourcesPlugin.COPY_YAML_TESTS_TASK)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 16:04:42 GMT 2021
    - 2.8K bytes
    - Click Count (0)
Back to Top