- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 22 for build_file (0.06 seconds)
-
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/precommit/LicenseHeadersPrecommitPluginFuncTest.groovy
import org.gradle.testkit.runner.TaskOutcome class LicenseHeadersPrecommitPluginFuncTest extends AbstractGradleFuncTest { def "detects invalid files with invalid license header"() { given: buildFile << """ plugins { id 'java' id 'elasticsearch.internal-licenseheaders' } """ dualLicensedFile() unknownSourceFile() unapprovedSourceFile()Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 10:22:28 GMT 2021 - 4.1K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/JdkDownloadPluginFuncTest.groovy
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 27 19:29:10 GMT 2021 - 10.5K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveSetupPluginFuncTest.groovy
import org.gradle.testkit.runner.TaskOutcome import spock.lang.Unroll class InternalDistributionArchiveSetupPluginFuncTest extends AbstractGradleFuncTest { def setup() { buildFile << """ import org.elasticsearch.gradle.internal.SymbolicLinkPreservingTar plugins { id 'elasticsearch.internal-distribution-archive-setup' } """Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 8.4K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy
} when: result = gradleRunner(transformTask).build() then: result.task(transformTask).outcome == TaskOutcome.UP_TO_DATE when: buildFile.write(buildFile.text.replace("blah", "baz")) result = gradleRunner(transformTask).build() then: result.task(transformTask).outcome == TaskOutcome.SUCCESS }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 30 16:30:48 GMT 2021 - 16.4K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/InternalYamlRestTestPluginFuncTest.groovy
import org.gradle.testkit.runner.TaskOutcome class InternalYamlRestTestPluginFuncTest extends AbstractRestResourcesFuncTest { def "yamlRestTest does nothing when there are no tests"() { given: buildFile << """ plugins { id 'elasticsearch.internal-yaml-rest-test' } """ when: def result = gradleRunner("yamlRestTest").build() then:Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 10:22:28 GMT 2021 - 3.1K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/PublishPluginFuncTest.groovy
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 22 07:24:59 GMT 2021 - 19K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.detekt.gradle.kts
config.convention(project.isolated.rootProject.projectDirectory.file("gradle/detekt.yml")) // also check the project build file source.from(project.buildFile) } pluginManager.withPlugin("gradlebuild.code-quality") { tasks { named("codeQuality") { dependsOn(detekt) } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jun 20 10:11:35 GMT 2024 - 1.1K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/ElasticsearchTestBasePluginFuncTest.groovy
@org.junit.Test public void testSysInput() { org.junit.Assert.assertEquals("bar", System.getProperty("foo")); } } """ buildFile.text = """ plugins { id 'java' id 'elasticsearch.test-base' } repositories { mavenCentral() }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.7K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/fixtures/AbstractGitAwareGradleFuncTest.groovy
def setup() { remoteGitRepo = new File(setupGitRemote(), '.git') "git clone ${remoteGitRepo.absolutePath} cloned".execute(Collections.emptyList(), testProjectDir.root).waitFor() buildFile = new File(testProjectDir.root, 'cloned/build.gradle') settingsFile = new File(testProjectDir.root, 'cloned/settings.gradle') } File setupGitRemote() {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.9K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalBwcGitPluginFuncTest.groovy
import org.gradle.testkit.runner.TaskOutcome class InternalBwcGitPluginFuncTest extends AbstractGitAwareGradleFuncTest { def setup() { internalBuild() buildFile << """ import org.elasticsearch.gradle.Version; apply plugin: org.elasticsearch.gradle.internal.InternalBwcGitPlugin bwcGitConfig {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 10:22:28 GMT 2021 - 2.5K bytes - Click Count (0)