Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for n_components (0.25 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            because("Provides the IntegrationTestFixturesRule implementation")
        }
        codenarc("org.codenarc:CodeNarc:$codenarcVersion")
        codenarc(embeddedKotlin("stdlib"))
    
        components {
            withModule<CodeNarcRule>("org.codenarc:CodeNarc") {
                params(groovyVersion)
            }
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 30 10:26:21 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

            testFixturesRuntimeOnly(libs.bytebuddy)
            testFixturesRuntimeOnly(libs.cglib)
        }
    }
    
    // Do not publish test fixture, we use them only internal for now
    val javaComponent = components["java"] as AdhocComponentWithVariants
    javaComponent.withVariantsFromConfiguration(testFixturesRuntimeElements) {
        skip()
    }
    javaComponent.withVariantsFromConfiguration(testFixturesApiElements) {
        skip()
    }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

    # Contributing to the Gradle Build Tool
    
    Thank you for your interest in contributing to Gradle!
    This guide explains how to contribute to the core Gradle components, 
    extensions and documentation located in this repository.
    For other extensions and components, see the 
    [Gradle Community Resources](https://gradle.org/resources/).
    
    This guide will help you to...
    
    * maximize the chance of your changes being accepted
    * work on the Gradle code base
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  4. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

        internal
        fun configure(components: ComponentMetadataHandler, configurations: ConfigurationContainer) {
            if (upgrade != null) {
                configurations.forceUpgrade(selected, upgrade!!)
            } else {
                providedBy.forEachIndexed { idx, provider ->
                    if (provider != selected) {
                        components.declareSyntheticCapability(provider, idx.toString())
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Aug 24 23:27:45 GMT 2022
    - 9.1K bytes
    - Viewed (0)
  5. LICENSE

          of your accepting any such warranty or additional liability.
    
       END OF TERMS AND CONDITIONS
    
    
    ==============================================================================
    Licenses for included components:
    
    ------------------------------------------------------------------------------
    Eclipse Public License 1.0
    https://opensource.org/licenses/EPL-1.0
    
    junit:junit
    org.sonatype.aether:aether-api
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 11:07:23 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  6. architecture/README.md

    <!-- 
      -- Note: this file contains a generated diagram. Use `./gradlew :architectureDoc` to generate 
      -->
    
    # Gradle platform architecture
    
    The diagram below shows the main components of the Gradle architecture. See [ADR4](standards/0004-use-a-platform-architecture.md) for more details.
    
    <!-- This diagram is generated. Use `./gradlew :architectureDoc` to update it -->
    ```mermaid
        graph TD
    
        subgraph core["core platform"]
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 22 01:31:52 GMT 2024
    - 2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        PULL_REQUEST_FEEDBACK("Pull Request Feedback", "Run various functional tests", "PullRequestFeedback"),
        READY_FOR_NIGHTLY("Ready for Nightly", "Rerun tests in different environments / 3rd party components", "ReadyforNightly"),
        READY_FOR_RELEASE("Ready for Release", "Once a day: Rerun tests in more environments", "ReadyforRelease"),
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
Back to top