Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Wain (0.16 sec)

  1. build-logic/uber-plugins/src/main/kotlin/gradlebuild.kotlin-library.gradle.kts

    }
    
    configurations.transitiveSourcesElements {
        val main = sourceSets.main.get()
        main.kotlin.srcDirs.forEach {
            outgoing.artifact(it)
        }
    }
    
    kotlin {
        target.compilations.named("testFixtures") {
            associateWith(target.compilations["main"])
        }
        target.compilations.named("test") {
            associateWith(target.compilations["main"])
            associateWith(target.compilations["testFixtures"])
        }
    Plain Text
    - Registered: 2023-09-27 11:36
    - Last Modified: 2023-06-20 15:41
    - 2.1K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

        unixScriptTemplate.from(layout.projectDirectory.file("../../../subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt"))
        windowsScriptTemplate.from(layout.projectDirectory.file("../../../subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt"))
    }
    
    configurations {
        create("gradleScriptsElements") {
    Plain Text
    - Registered: 2023-11-29 11:36
    - Last Modified: 2023-09-22 09:29
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/plugins/PrecompiledKotlinPluginCrossVersionSpec.groovy

                        maven { url = uri("${mavenRepo.uri}") }
                    }
                }
            """
            file("plugin/src/main/kotlin/my-gradle-plugin.init.gradle.kts").text = """
                println("My gradle plugin applied!")
            """
            file("plugin/src/main/kotlin/my-settings-plugin.settings.gradle.kts").text = """
                pluginManagement {
                    println("settings pluginManagement {}")
    Groovy
    - Registered: 2023-09-27 11:36
    - Last Modified: 2023-08-02 08:06
    - 6.5K bytes
    - Viewed (0)
  4. .github/workflows/codeql-analysis.yml

    name: "Code scanning - action"
    
    on:
      push:
        branches: [ main, master, release ]
      schedule:
        - cron: '0 5 * * *'
    
    permissions:
      contents: read
    
    jobs:
      CodeQL-Build:
    
        permissions:
          actions: read  # for github/codeql-action/init to get workflow details
          contents: read  # for actions/checkout to fetch code
          security-events: write  # for github/codeql-action/analyze to upload SARIF results
    Others
    - Registered: 2023-11-29 11:36
    - Last Modified: 2023-04-01 03:45
    - 4K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild.api-metadata.gradle.kts

        property("includes", PublicApi.includes.joinToString(":"))
        property("excludes", PublicApi.excludes.joinToString(":"))
        destinationFile = apiDeclarationPropertiesFile
    }
    
    sourceSets.main {
        output.dir(mapOf("builtBy" to apiDeclaration), apiDeclarationPropertiesFile.map { it.asFile.parentFile })
    }
    
    fun generatedPropertiesFileFor(name: String) =
    Plain Text
    - Registered: 2023-11-22 11:36
    - Last Modified: 2023-01-20 15:24
    - 1.4K bytes
    - Viewed (0)
  6. build-logic/packaging/src/main/kotlin/gradlebuild/run/tasks/RunEmbeddedGradle.kt

        abstract val processOperations: ProcessOperations
    
        @TaskAction
        fun runGradle() {
            processOperations.javaexec {
                classpath(gradleClasspath)
                mainClass = "org.gradle.launcher.Main"
                workingDir = File(******@****.***())
                jvmArgs?.add("-Dorg.gradle.daemon=false")
                args = ******@****.***
            }
        }
    Plain Text
    - Registered: 2023-11-22 11:36
    - Last Modified: 2023-01-30 09:32
    - 2.3K bytes
    - Viewed (0)
  7. gradle/verification-keyring.keys

    UmJCvpsFmyy5Jbro56q4JEosWCAi9uXVeW3SSBW4jbu3plJNMrnBvBgPM8TI8G3+
    5hEGf2vHkgXOGMk=
    =nYS8
    -----END PGP PUBLIC KEY BLOCK-----
    
    pub    37E9D58EA4598641
    uid    Dain Sundstrom <dain@iq80.com>
    
    sub    38185785755267BD
    sub    381E922B6E350BF1
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQENBE4KeqwBCADHUgytFpv7cJv8wfVQwyuYC8+QtbdTtOErEIpnaYQT9FV9uAs8
    Plain Text
    - Registered: 2023-09-27 11:36
    - Last Modified: 2023-09-14 23:27
    - 490.9K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    internal
    fun Project.addSourceSet(testType: TestType): SourceSet {
        val prefix = testType.prefix
        val sourceSets = the<SourceSetContainer>()
        val main by sourceSets.getting
        return sourceSets.create("${prefix}Test") {
            compileClasspath += main.output
            runtimeClasspath += main.output
        }
    }
    
    
    internal
    fun Project.createTasks(sourceSet: SourceSet, testType: TestType) {
        val prefix = testType.prefix
    Plain Text
    - Registered: 2023-11-29 11:36
    - Last Modified: 2023-09-30 16:17
    - 11.7K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/BuildScanInfoCollectingServices.kt

    // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.support.serviceOf
    
    /**
     * In build-logic and main build, register a BuildService instance separately,
     * which collects necessary information for build scan.
     */
    fun <T : AbstractBuildScanInfoCollectingService> Project.registerBuildScanInfoCollectingService(
    Plain Text
    - Registered: 2023-11-29 11:36
    - Last Modified: 2023-01-30 09:32
    - 3.2K bytes
    - Viewed (0)
  10. .editorconfig

    # Markdown files sometimes need trailing whitespaces.
    [*.md]
    trim_trailing_whitespace = false
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [gradle/verification-metadata.xml]
    indent_size = 3
    
    [subprojects/launcher/src/main/resources/release-features.txt]
    Plain Text
    - Registered: 2023-11-29 11:36
    - Last Modified: 2023-10-02 11:48
    - 643 bytes
    - Viewed (0)
Back to top