Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 458 for subProjects (0.15 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGeneratorConfiguration.groovy

            config.externalApiDependencies = this.externalApiDependencies
            config.externalImplementationDependencies = [
                reflectasm: 'com.googlecode:reflectasm:1.01',
            ]
    
            config.subProjects = this.subProjects
            config.projectDepth = this.projectDepth
            config.sourceFiles = this.sourceFiles
            config.minLinesOfCodePerSourceFile = 100
            config.compositeBuild = this.compositeBuild
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/SubprojectsInfo.kt

        val subprojectsFolder = project.layout.projectDirectory.dir("subprojects")
    
        private
        val testingFolder = project.layout.projectDirectory.dir("testing")
    
        @get:Internal
        protected
        val subprojectsJson = project.layout.projectDirectory.file(".teamcity/subprojects.json")
    
        protected
        fun generateSubprojectsJson(): String {
            val subprojects = generateSubprojects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/multiproject/groovy/build.gradle

    // tag::plugins-on-subprojects[]
    plugins {
        id 'com.example.hello' version '1.0.0' apply false
        id 'com.example.goodbye' version '1.0.0' apply false
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/TestProjectGenerator.groovy

        }
    
        def populateDependencyTree(DependencyTree dependencyTree) {
            if (config.subProjects == 0) {
                dependencyTree.calculateClassDependencies(0, 0, config.sourceFiles - 1)
            } else {
                for (int subProjectNumber = 0; subProjectNumber < config.subProjects; subProjectNumber++) {
                    def sourceFileRangeStart = subProjectNumber * config.sourceFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

            def body = ""
            def isParent = subProjectNumber == null || config.subProjects == 0
            def hasSources = subProjectNumber != null || config.subProjects == 0
            if (isParent) {
                if (config.subProjects != 0) {
                    body += """
                        <modules>
                            ${(0..config.subProjects - 1).collect { "<module>project$it</module>" }.join("\n                ")}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationSupport.groovy

        CompilationOutputsFixture impl
    
        def setup() {
            impl = new CompilationOutputsFixture(file("impl/build/classes"))
            buildFile << """
                subprojects {
                    apply plugin: '${language.name}'
                    apply plugin: 'java-library'
                    ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. build.gradle.kts

        id("gradlebuild.lifecycle")                  // CI: Add lifecycle tasks to for the CI pipeline (currently needs to be applied early as it might modify global properties)
        id("gradlebuild.generate-subprojects-info")  // CI: Generate subprojects information for the CI testing pipeline fan out
        id("gradlebuild.cleanup")                    // CI: Advanced cleanup after the build (like stopping daemons started by tests)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/RequiresExtension.groovy

     * <p>
     * If you need a new combination of {@link TestPrecondition} classes, go to {@code subprojects/internal-testing/src/main/resources/valid-precondition-combinations.csv} and simply add it.
     * <p>
     * See the <a href="https://github.com/gradle/gradle/tree/master/subprojects/predicate-tester">predicate-tester</a> project to learn about where we use the information.
     *
     * @see Requires
     */
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

            // projectCount * memoryHog ~= 25% default JVM heap size
            def projectCount = 5
            executer.requireIsolatedDaemons()
    
            def subprojects = []
            projectCount.times {
                subprojects << "sub" + it
            }
            multiProjectBuild("root", subprojects) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
    
                        // ~25MB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiEclipseModelCrossVersionSpec.groovy

        }
    
        def "Multi-project build can define different target bytecode level for subprojects"() {
            given:
            createDirs("subproject-a", "subproject-b", "subproject-c")
            settingsFile << """
                include 'subproject-a', 'subproject-b', 'subproject-c'
            """
    
            buildFile << """
                project(':subproject-a') {
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top