Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getProjectDir (0.08 seconds)

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

         */
        private FileCollection dependencies;
    
        /**
         * The directory to find the license and sha files in.
         */
        private File licensesDir = new File(getProject().getProjectDir(), "licenses");
    
        /**
         * A map of patterns to prefix, used to find the LICENSE and NOTICE file.
         */
        private Map<String, String> mappings = new LinkedHashMap<>();
    
        /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 26 12:16:14 GMT 2021
    - 14.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

                t.getOutputs().doNotCacheIf("Build cache is disabled for packaging tests", Specs.satisfyAll());
                t.setMaxParallelForks(1);
                t.setWorkingDir(project.getProjectDir());
                if (System.getProperty(IN_VM_SYSPROP) == null) {
                    t.dependsOn(deps);
                }
                configure.execute(t);
            });
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
Back to Top