Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 164 for subproject2 (0.22 sec)

  1. subprojects/distributions-dependencies/build.gradle.kts

     * This project provides the "platform" for the Gradle distribution.
     * We want the versions that are packaged in the distribution to be used everywhere (e.g. in all test scenarios)
     * Hence, we lock the versions down here for all other subprojects.
     *
     * Note:
     * We use strictly here because we do not have any better means to do this at the moment.
     * Ideally we wound be able to say "lock down all the versions of the dependencies resolved for the distribution"
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

        // Because this is done directly by the plugin application logic, we can't use a ComponentMetadataRule to exclude it.
        // See: https://github.com/gradle/guides/blob/ba018cec535d90f75876bfcca29381d213a956cc/subprojects/gradle-guides-plugin/src/main/java/org/gradle/docs/samples/internal/SamplesDocumentationPlugin.java#L335
        exclude([group: "org.slf4j", module: "slf4j-simple"])
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. JavadocStyleGuide.md

    ```java
    /**
     * <pre><code class="language-kotlin">
     * project.ext.prop1 = "foo"
     * task doStuff {
     *     ext.prop2 = "bar"
     * }
     * subprojects { ext.${prop3} = false }
     * </code></pre>
     */
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryIntegrationTest.groovy

            def lib = new CppLib()
    
            given:
            createDirs("greeter", "consumer")
            settingsFile << "include 'greeter', 'consumer'"
            buildFile << """
                subprojects {
                    apply plugin: 'cpp-library'
                }
                project(':consumer') {
                    dependencies { implementation project(':greeter') }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            given:
            mavenRepo.module("org.gradle", "dep", "1.1").publish()
    
            and:
            settingsFile << "include ':main', ':util'"
    
            buildFile << """
    subprojects {
        apply plugin: 'java-library'
        apply plugin: 'maven-publish'
        group = 'my.org'
        version = '1.0'
        repositories {
            maven { url "${mavenRepo.uri}" }
        }
        publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

        def "tells if there are no configurations"() {
            when:
            run "dependencies"
    
            then:
            output.contains "No configurations"
        }
    
        def "dependencies report does not run for subprojects by default"() {
            given:
            createDirs("a")
            file("settings.gradle") << "include 'a'"
    
            file("build.gradle") << """
            project(":a") {
              configurations { foo }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'app'
            """
            buildFile << """
                allprojects {
                    apply plugin: 'visual-studio'
                }
                subprojects {
                    apply plugin: 'cpp'
    
                    model {
                        buildTypes {
                            debug
                            release
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

        def "can have cycle in project dependencies"() {
            given:
            createDirs("a", "b", "c")
            file('settings.gradle') << "include 'a', 'b', 'c'"
    
            and:
            buildFile << """
    
    subprojects {
        apply plugin: 'base'
        configurations {
            first
            other
            'default' {
                extendsFrom first
            }
        }
        task jar(type: Jar)
        artifacts {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

                projectConfigured(":buildSrc")
                modelsCreated(":")
                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on subprojects via 'allprojects'", 2)
            }
    
            when:
            executer.withArguments(ENABLE_CLI, WARN_PROBLEMS_CLI_OPT)
            def model2 = fetchModel()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

                def buildFile = new File(invocation.projectDir, "build.gradle")
                buildFile << """
                    def finalizerTask = tasks.register("testFinalizer")
                    subprojects {
                        tasks.withType(com.android.build.gradle.tasks.factory.AndroidUnitTest) { testTask ->
                            testTask.finalizedBy(finalizerTask)
                            finalizerTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top