- Sort Score
- Num 10 results
- Language All
Results 11 - 19 of 19 for configureEach (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.private-javadoc.gradle.kts
pluginManager.withPlugin("gradlebuild.code-quality") { tasks { named("codeQuality") { dependsOn(tasks.withType<Javadoc>()) } } } tasks.withType<Javadoc>().configureEach { assert(name != "javadocAll") // This plugin should not be applied to the :docs project. onlyIf("Do not run the task if there are no java sources") {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Aug 20 14:11:17 GMT 2024 - 2.3K bytes - Click Count (0) -
build-logic-settings/configuration-cache-compatibility/src/main/kotlin/gradlebuild.configuration-cache-compatibility.settings.gradle.kts
"reason", "redundantKaptCheck", "redundantPluginAlert", ) -> true else -> false } gradle.lifecycle.beforeProject { tasks.configureEach { val task = this if (isIncompatible(task)) { task.notCompatibleWithConfigurationCache("Task is not compatible with the configuration cache") } } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jan 15 16:07:38 GMT 2025 - 4.1K bytes - Click Count (0) -
.github/workflows/codeql-analysis.init.gradle
* See the License for the specific language governing permissions and * limitations under the License. */ allprojects { tasks.withType(JavaCompile).configureEach { outputs.doNotCacheIf("CodeQL scanning", { true }) }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Sat Oct 10 05:36:54 GMT 2020 - 745 bytes - Click Count (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts
extensions.create<StrictCompileExtension>("strictCompile") val strictCompilerArgs = listOf("-Werror", "-Xlint:all", "-Xlint:-options", "-Xlint:-serial", "-Xlint:-classfile", "-Xlint:-try") tasks.withType<JavaCompile>().configureEach { // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code // For example, external JMH plugin generates code that produces compiler warnings
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Dec 15 20:21:31 GMT 2023 - 1.2K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts
parameters.homeDir = intTestHomeDir } fun Gradle.rootBuild(): Gradle = parent.let { it?.rootBuild() ?: this } tasks.withType<DistributionTest>().configureEach { shouldRunAfter("test") setJvmArgsOfTestJvm() setSystemPropertiesOfTestJVM("default") configureGradleTestEnvironment() addSetUpAndTearDownActions() }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 18:02:41 GMT 2025 - 3.8K bytes - Click Count (0) -
buildSrc/src/main/kotlin/Osgi.kt
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Aug 01 08:06:31 GMT 2025 - 5.1K bytes - Click Count (0) -
build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompilation.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Sep 19 05:45:14 GMT 2025 - 5.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleReleaseNotesPlugin.java
tasks.register("updateContributorsInReleaseNotes", UpdateContributorsInReleaseNotes.class); tasks.withType(AbstractCheckOrUpdateContributorsInReleaseNotes.class).configureEach(task -> { task.getGithubToken().set(project.getProviders().environmentVariable("GITHUB_TOKEN")); task.getReleaseNotes().set(extension.getReleaseNotes().getMarkdownFile());
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri May 16 18:26:52 GMT 2025 - 6.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
} private void generateUserManual(Project project, TaskContainer tasks, ProjectLayout layout, GradleDocumentationExtension extension) { tasks.withType(AsciidoctorTask.class).configureEach(task -> { if (task.getName().equals("asciidoctor")) { // ignore this task task.setEnabled(false); return; }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 04 14:26:28 GMT 2025 - 19.3K bytes - Click Count (0)