Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 366 for allprojects (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/build.gradle

    allprojects {
        configurations {
            evictedTransitive
            evictedDirect
            multiProject
            create('default')
        }
        dependencies {
            repositories {
                ivy {
                    artifactPattern projectDir.absolutePath + '/[module]-[revision].jar'
                    ivyPattern projectDir.absolutePath + '/[module]-[revision]-ivy.xml'
                }
            }
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/initScripts/plugins/groovy/init.gradle

        private static String ENTERPRISE_REPOSITORY_URL = "https://repo.gradle.org/gradle/repo"
    
        void apply(Gradle gradle) {
            // ONLY USE ENTERPRISE REPO FOR DEPENDENCIES
            gradle.allprojects { project ->
                project.repositories {
    
                    // Remove all repositories not pointing to the enterprise repository url
                    all { ArtifactRepository repo ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/BuildOperationCrossProjectConfigurator.java

            runBlockConfigureAction(SUBPROJECTS_DETAILS, projects, configureAction);
        }
    
        @Override
        public void allprojects(Iterable<? extends ProjectInternal> projects, Action<? super Project> configureAction) {
            runBlockConfigureAction(ALLPROJECTS_DETAILS, projects, configureAction);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:41 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/build.gradle.kts

            classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
        }
        repositories {
            mavenCentral()
            google()
        }
    }
    
    allprojects {
        repositories {
            mavenCentral()
            google()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 958 bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

    class SwiftIncrementalCompileIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
        def setup() {
            // Useful for diagnosing swiftc incremental compile failures
            buildFile << """
                allprojects {
                    tasks.withType(SwiftCompile) {
                        compilerArgs.add('-driver-show-incremental')
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

        /** This is a provisional method and may be removed */
        public List<MavenProject> getAllProjects() {
            return allProjects;
        }
    
        /** This is a provisional method and may be removed */
        public void setAllProjects(List<MavenProject> allProjects) {
            this.allProjects = allProjects;
        }
    
        /*if_not[MAVEN4]*/
    
        //
        // Deprecated
        //
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/resources/org/gradle/scala/compile/ScalaCompileWithJavaLibraryIntegrationTest/javaLibraryCanDependOnScalaLibraryProject/build.gradle

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id 'java-library'
    }
    
    allprojects {
        repositories {
            mavenCentral()
        }
    }
    
    dependencies {
        implementation project(":lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 770 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildEventsErrorIntegrationTest.groovy

                    .assertHasFileName("Build file '$buildFile'")
                    .assertHasLineNumber(3)
        }
    
        def "produces reasonable error when Gradle.allprojects action fails"() {
            def initScript = initScript """
    allprojects {
        throw new RuntimeException("broken")
    }
    """
            when:
            executer.usingInitScript(initScript)
            fails "a"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

    import spock.lang.Timeout
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    @Requires(IntegTestPreconditions.NotParallelExecutor)
    @ToBeFixedForIsolatedProjects(because = "allprojects")
    // no point, always runs in parallel
    class ParallelTaskExecutionIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker {
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompiledLanguage.groovy

            return StringUtils.capitalize(getName())
        }
    
        String getCompileTaskName() {
            return "compile${name.capitalize()}"
        }
    
        String projectGroovyDependencies(String allprojectsOrSubproject= 'allprojects') {
            this == GROOVY ?
                """
                ${allprojectsOrSubproject} {
                    dependencies {
                        implementation localGroovy()
                    }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top