Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for subproject1 (0.17 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. integration-tests/gradle/build.gradle.kts

        classpath("com.android.tools.build:gradle:$agpVersion") {
          exclude(
            group = "org.jetbrains.trove4j"
          ) // Might not be available on Maven Central and not needed for this test
        }
      }
    }
    
    subprojects {
      if (name.endsWith("Java")) {
        apply(plugin = "java-library")
      } else {
        apply(plugin = "com.android.application")
        the<com.android.build.gradle.AppExtension>().compileSdkVersion(30)
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

                    @TaskAction
                    def go() {
                        ${server.callFromBuildUsingExpression("projectName")}
                    }
                }
    
                subprojects {
                    tasks.create('slow', SlowTask)
                }
                project(':a') {
                    tasks.slow.dependsOn(project(':b').tasks.slow, project(':c').tasks.slow)
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TransformProgressEventCrossVersionSpec.groovy

            """
            buildFile << """
                import org.gradle.api.artifacts.transform.TransformParameters
    
                def artifactType = Attribute.of('artifactType', String)
                subprojects {
                    apply plugin: 'java'
                }
                project(":app") {
                    dependencies {
                        implementation project(":lib")
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Returns the set containing this project and its subprojects.</p>
         *
         * @return The set of projects.
         */
        Set<Project> getAllprojects();
    
        /**
         * <p>Returns the set containing the subprojects of this project.</p>
         *
         * @return The set of projects.  Returns an empty set if this project has no subprojects.
         */
        Set<Project> getSubprojects();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. 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)
  9. staging/README.md

        - [`repos.sh`](https://github.com/kubernetes/publishing-bot/blob/master/hack/repos.sh):
        Add the staging repo in the list of repos to be published.
    
    4. Add the staging and published repositories as a subproject for the
    SIG that owns the repos in
    [`sigs.yaml`](https://github.com/kubernetes/community/blob/master/sigs.yaml).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

        }
    
        /**
         * Should the build be split into multiple subprojects?
         *
         * This property can be set via the command-line options '--split-project'
         * and '--no-split-project'.
         *
         * @since 6.7
         */
        @Input
        @Optional
        @Option(option = "split-project", description = "Split functionality across multiple subprojects?")
        public Property<Boolean> getSplitProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top