Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for buildBwc (0.06 seconds)

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

            // we want basic lifecycle tasks like `clean` here.
            project.getPlugins().apply(LifecycleBasePlugin.class);
    
            TaskProvider<Task> buildBwcTaskProvider = project.getTasks().register("buildBwc");
            List<DistributionProject> distributionProjects = resolveArchiveProjects(checkoutDir.get(), bwcVersion.get());
    
            for (DistributionProject distributionProject : distributionProjects) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 18 09:11:28 GMT 2021
    - 14.5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcSetupExtension.java

        private String minimumCompilerVersionPath(Version bwcVersion) {
            return (bwcVersion.onOrAfter(BUILD_TOOL_MINIMUM_VERSION)) ?
                    "build-tools-internal/" + MINIMUM_COMPILER_VERSION_PATH :
                    "buildSrc/" + MINIMUM_COMPILER_VERSION_PATH;
        }
    
        private static class IndentingOutputStream extends OutputStream {
    
            public final byte[] indent;
            private final OutputStream delegate;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 18 09:11:28 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/forbidden/third-party-audit.txt

    # up-to-date, and that each module accurately documents the evil things
    # that its dependencies do.
    #
    # For more information, look at ThirdPartyAuditTask.groovy in buildSrc/
    
    #
    # Ruleset to fail on java internal apis, using this logic:
    # http://docs.oracle.com/javase/8/docs/api/java/lang/SecurityManager.html#checkPackageAccess-java.lang.String-
    #
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3K bytes
    - Click Count (0)
  4. .teamcity/performance-tests-ci.json

          "testProject" : "withVerboseTestNG",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.inception.BuildSrcApiChangePerformanceTest.buildSrc abi change",
        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "largeJavaMultiProjectKotlinDsl",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 21:56:33 GMT 2026
    - 32.5K bytes
    - Click Count (0)
  5. .teamcity/performance-test-durations.json

        "linux" : 210
      }, {
        "testProject" : "withVerboseTestNG",
        "linux" : 204
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.inception.BuildSrcApiChangePerformanceTest.buildSrc abi change",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 669
      }, {
        "testProject" : "largeJavaMultiProjectKotlinDsl",
        "linux" : 2782
      }, {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

    /**
     * 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>
     */
    public class ChangelogEntry {
        private Integer pr;
    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)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

            // Default test task should run only unit tests
            maybeConfigure(project.getTasks(), "test", Test.class, task -> task.include("**/*Tests.class"));
    
            // none of this stuff is applicable to the `:buildSrc` project tests
            File heapdumpDir = new File(project.getBuildDir(), "heapdump");
    
            project.getTasks().withType(Test.class).configureEach(test -> {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:14:49 GMT 2021
    - 10.4K bytes
    - Click Count (0)
  8. .github/CODEOWNERS

    /build.gradle*                              @gradle/bt-developer-productivity
    /settings.gradle*                           @gradle/bt-developer-productivity
    gradle/shared-with-buildSrc/                @gradle/bt-developer-productivity
    packaging/internal-build-reports/           @gradle/bt-developer-productivity
    testing/distributions-basics/               @gradle/bt-developer-productivity
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 10.8K bytes
    - Click Count (0)
Back to Top