- Sort Score
- Result 10 results
- Languages All
Results 731 - 740 of 2,594 for project1 (0.04 sec)
-
.github/workflows/submit-github-dependency-graph.yml
- uses: actions/setup-java@v5 with: distribution: temurin java-version: 17 - name: Setup Gradle uses: gradle/actions/dependency-submission@v5 env: # Exclude some projects and configurations that should not contribute to the dependency graph DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':docs|:internal-performance-testing|:enterprise-plugin-performance|:performance|:internal-integ-testing'Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Nov 20 22:15:20 UTC 2025 - 933 bytes - Viewed (0) -
build-logic/binary-compatibility/build.gradle.kts
} description = "Provides a plugin for configuring japicmp-gradle-plugin to detect binary incompatible changes" dependencies { api("me.champeau.gradle:japicmp-gradle-plugin") implementation(projects.dependencyModules) implementation("gradlebuild:basics") implementation("gradlebuild:module-identity") implementation("com.github.javaparser:javaparser-core") implementation("com.google.code.gson:gson")
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jul 04 09:21:38 UTC 2025 - 1K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts
daemonRegistry = repoRoot().dir("build/daemon") gradleSnippetsDir = repoRoot().dir("platforms/documentation/docs/src/snippets") // TODO use dependency management distZipVersion = project.version.toString() } // Wire the different inputs for local distributions and repos that are declared by dependencies in the build scripts
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 18:02:41 UTC 2025 - 3.8K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
} /** * Walk the resolved graph and discover all external dependencies that are not transitive dependencies * of project dependencies. This optimizes module loading during runtime, as we will only load external * modules that are not loaded transitively by other project modules. * * We perform this filtering, since if we simply include all external dependencies, regardless of whether
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri May 16 18:26:52 UTC 2025 - 4.4K bytes - Viewed (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts
val sampleName = "building$capName$capKind" + if (modularizationOption.isMulti()) "MultiProject" else "" val multiProjectSuffix = if (modularizationOption.isMulti()) " with libraries" else "" val generateSampleTask = project.tasks.register<GenerateSample>("generateSample${sampleName.capitalize()}") { readmeTemplates.convention(layout.projectDirectory.dir("src/samples/readme-templates"))
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jun 24 13:46:12 UTC 2025 - 3.4K bytes - Viewed (0) -
samples/crawler/build.gradle.kts
plugins { kotlin("jvm") application } application { mainClass.set("okhttp3.sample.Crawler") } dependencies { implementation(projects.okhttp) implementation(libs.jsoup) } tasks.compileJava { options.isWarnings = falseRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Feb 15 23:38:32 UTC 2022 - 234 bytes - Viewed (0) -
samples/simple-client/build.gradle.kts
plugins { kotlin("jvm") } dependencies { implementation(projects.okhttp) implementation(libs.squareup.moshi)Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Feb 15 23:38:32 UTC 2022 - 118 bytes - Viewed (0) -
dbflute_fess/dfprop/littleAdjustmentMap.dfprop
# o isAvailableDatabaseNativeJDBC: (NotRequired - Default false) # [true] # Use classes of database native JDBC on generated classes to get best performances of DB access. # Your project needs to refer to database native JDBC. # #; isAvailableDatabaseNativeJDBC = false # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt
}, ) } }) class FlakyTestQuarantineProject( model: CIBuildModel, stage: Stage, val os: Os, ) : Project({ id("${model.projectId}_FlakyQuarantine_${os.asName()}") name = "Flaky Test Quarantine - ${os.asName()}" model.stages .filter { it.stageName <= StageName.READY_FOR_RELEASE }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 22 07:15:16 UTC 2025 - 5.6K bytes - Viewed (0) -
.teamcity/src/test/kotlin/Commons.kt
import jetbrains.buildServer.configs.kotlin.DslContext import jetbrains.buildServer.configs.kotlin.buildSteps.GradleBuildStep fun DslContext.initForTest() { // Set the project id here, so we can use methods on the DslContext parentProjectId = AbsoluteId("Gradle") projectId = AbsoluteId("Gradle_Master") settingsRootId = AbsoluteId("GradleMaster") settingsRoot.name = "GradleMaster" addParameters("branch" to "master") }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Jun 12 09:41:54 UTC 2025 - 662 bytes - Viewed (0)