Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 372 for allprojects (0.18 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

            given:
            createDirs("project1", "project2")
            settingsFile << """
    include "project1", "project2"
            """
    
            buildFile << """
    allprojects {
        group = "org.gradle.test"
        version = "1.0"
    }
    
    project(":project1") {
        apply plugin: "java-library"
        apply plugin: "ivy-publish"
    
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseMultiModuleIntegrationTest.groovy

    include 'api'
    include 'shared:api', 'shared:model'
    include 'services:utilities'
    include 'util'
    include 'contrib:services:util'
    
            """
    
            def buildFile = file("build.gradle")
            buildFile << """
    allprojects {
        apply plugin: 'java'
        apply plugin: 'eclipse'
    }
    
    project(':api') {
        dependencies {
            implementation project(':shared:api'), project(':shared:model')
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top