Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 372 for allprojects (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

        private final MavenSession mavenSession;
        private final MavenRepositorySystem mavenRepositorySystem;
        private final RuntimeInformation runtimeInformation;
        private final Map<String, Project> allProjects = new ConcurrentHashMap<>();
    
        @SuppressWarnings("checkstyle:ParameterNumber")
        public DefaultSession(
                @Nonnull MavenSession session,
                @Nonnull RepositorySystem repositorySystem,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 16 08:45:24 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildSrcIdentityIntegrationTest.groovy

        def setup() {
            buildB = multiProjectBuild("buildB", ['b1', 'b2']) {
                file("buildSrc/src/main/java/Thing.java") << "class Thing { }"
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
                """
            }
            includedBuilds << buildB
        }
    
        def "includes build identifier in logging output with #display"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BasicProjectConfigurationProgressCrossVersionSpec.groovy

            event.parent.descriptor.name == "ThingTest"
        }
    
        def javaProjectWithTests() {
            buildFile << """
                allprojects {
                    apply plugin: 'java'
                    ${mavenCentralRepository()}
                    dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

            and:
            createDirs("projectA", "projectB")
            settingsFile << "include 'projectA', 'projectB'"
    
            buildFile << """
    allprojects {
        apply plugin: 'java-library'
    
        repositories {
            maven { url '$mavenRepo.uri' }
        }
    }
    
    project(':projectA') {
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentDependencyResolutionIntegrationTest.groovy

        @Issue("gradle/performance#502")
        def "local component selection harness test: thread-safety"() {
            given:
            buildFile << '''
                 def usage = Attribute.of('usage', String)
                 allprojects {
    
                    dependencies {
                        attributesSchema {
                            attribute(usage)
                        }
                    }
                    configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractGroupedProjectConfigureLoggingFunctionalTest.groovy

            given:
            settingsFile << """
                include 'a', 'b'
            """
            buildFile << """
                println "root project"
                // Some nested build operations
                allprojects {
                    println "configure \$path"
                }
                tasks.register("thing") {
                    println "create \$path"
                }
                tasks.thing.description = "does something"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

            def subprojects = []
            projectCount.times {
                subprojects << "sub" + it
            }
            multiProjectBuild("root", subprojects) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
    
                        // ~25MB
                        ext.memoryHog = new byte[1024*1024*25]
    
                        tasks.withType(JavaCompile).configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveFailureTestFixture.groovy

            this.buildFile = buildFile
            this.config = config
        }
    
        void prepare(String config = this.config) {
            buildFile << """
                allprojects {
                    tasks.register("checkDeps") {
                        if (${GradleContextualExecuter.configCache}) {
                            def files = configurations.${config}
                            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaProject.xml

                    </tr>
                </thead>
                <tr>
                    <td>modules</td>
                    <td><literal>project.allprojects.idea.module</literal></td>
                    <td/>
                </tr>
                <tr>
                    <td>vcs</td>
                    <td/>
                    <td/>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            delegate.rootProject(action.withCrossProjectModelAccessCheck())
        }
    
        override fun allprojects(action: Action<in Project>) {
            // Use the delegate's implementation of `rootProject` to ensure that the action is only invoked once the rootProject is available
            delegate.rootProject {
                // Instead of the rootProject's `allProjects`, collect the projects while still tracking the current referrer project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top