Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 243 for subproject1 (0.23 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Expand that row to see where the build applied this script.
    
    image::performance/script-b-application.png[title="Showing the application of script-b.gradle to the build"]
    
    You can see that subproject `:app1` applied the script once, from inside of that subproject's `build.gradle` file.
    
    == Profile report
    
    If you prefer not to use build scans, you can generate an HTML report in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaDependencyReportPerformanceTest.groovy

    )
    class JavaDependencyReportPerformanceTest extends AbstractCrossVersionPerformanceTest {
    
        def "generate dependency report"() {
            given:
            def subProject = (runner.testProject == LARGE_JAVA_MULTI_PROJECT.projectName) ? 'project363:' : ''
            runner.tasksToRun = ["${subProject}dependencyReport"]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/api/plugins/BuildSrcPluginIntegrationTest.groovy

                    }
                }
                dependencies {
                    runtimeOnly project(":subproject")
                }
            """
            file("buildSrc/settings.gradle") << """
                include 'subproject'
            """
            buildFile << """
                apply plugin: MyPlugin
                apply plugin: MyPluginSub
                // nuke buildSrc classes so we can't use them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. .github/CODEOWNERS

    testing/internal-performance-testing/       @gradle/bt-developer-productivity
    testing/internal-testing/                   @gradle/bt-developer-productivity
    
    # Release coordination
    subprojects/core-platform/              @gradle/bt-support
    subprojects/distributions-dependencies/ @gradle/bt-support
    subprojects/distributions-full/         @gradle/bt-support
    testing/performance/                    @gradle/bt-support
    testing/smoke-test/                     @gradle/bt-support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/templates/settings.gradle

    <%
        def i = 0
        def groups = subprojects.collect { "'$it'" }.groupBy { i++ % 100 }
        groups.each {
            println "include " + it.value.join(", ")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 164 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            project.languageLevel.level == "JDK_1_5"
            project.jdkName == '1.6'
        }
    
        def "provides all modules"() {
    
            file('build.gradle').text = '''
    subprojects {
        apply plugin: 'java'
    }
    '''
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = loadToolingModel(IdeaProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-monolithic/build.gradle

    subprojects {
        apply from: rootProject.file("common.gradle")
        apply from: rootProject.file("components.gradle")
    }
    
    apply from: file("common.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 191 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    link:../samples/sample_convention_plugins.html[**Convention plugins**] are plugins used to share build logic between subprojects (modules).
    Users can wrap common logic in a convention plugin.
    For example, a code coverage plugin used as a convention plugin can survey code coverage for the _entire project_ and _not_ just a specific subproject.
    
    TIP: Gradle highly recommends the use of Convention plugins.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    Buildscript classes for Kotlin and Groovy are transformed via execution engine when they are compiled, base logic is in [BuildScriptCompileUnitOfWork.java](https://github.com/gradle/gradle/blob/master/subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompileUnitOfWork.java)....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

        repositories {
            mavenCentral()
        }
    }
    ----
    
    You can also include version catalogs in this section.
    
    === 5. Add subprojects to the build
    
    The settings file defines the structure of the project by adding all the subprojects using the link:{javadocPath}/org/gradle/api/initialization/Settings.html[`include`] statement:
    
    [source,kotlin]
    ----
    include("app")
    include("business-logic")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top