- Sort Score
- Result 10 results
- Languages All
Results 11 - 17 of 17 for configureEach (0.16 sec)
-
build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts
import com.google.gson.Gson import java.net.URI wrapperUpdateTask("nightly", "nightly") wrapperUpdateTask("rc", "release-candidate") wrapperUpdateTask("current", "current") tasks.withType<Wrapper>().configureEach { val jvmOpts = "-Dfile.encoding=UTF-8" inputs.property("jvmOpts", jvmOpts) doLast { val optsEnvVar = "DEFAULT_JVM_OPTS"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 17 08:58:33 UTC 2024 - 1.4K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.reproducible-archives.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ // Ensure the archives produced are reproducible tasks.withType<AbstractArchiveTask>().configureEach { isPreserveFileTimestamps = false isReproducibleFileOrder = true dirPermissions { unix("0755") } filePermissions { unix("0644") }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Mar 06 15:37:11 UTC 2024 - 867 bytes - Viewed (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 }) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Oct 10 05:36:54 UTC 2020 - 745 bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
configureJarTasks() pluginManager.withPlugin("java-base") { configureClasspathManifestGeneration() } fun configureJarTasks() { tasks.withType<Jar>().configureEach { archiveBaseName = moduleIdentity.baseName archiveVersion = moduleIdentity.version.map { it.baseVersion.version } manifest.attributes( mapOf(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed May 01 08:59:48 UTC 2024 - 4.4K bytes - Viewed (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());
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 08:15:16 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java
overrideDokkaVersion(project, extension); setMemoryForWorkers(project); } private static void setMemoryForWorkers(Project project) { project.getTasks().withType(DokkatooGenerateTask.class).configureEach(task -> { task.getWorkerMinHeapSize().set("512m"); task.getWorkerMaxHeapSize().set("2g"); }); }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 7.7K bytes - Viewed (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; }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 01 05:46:51 UTC 2024 - 17.7K bytes - Viewed (0)