Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 164 for subProjects (0.19 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            given:
            def repoDir = file("repo")
            createDirs("deck", "card", "shuffle")
            settingsFile << "include 'deck', 'card', 'shuffle'"
            buildFile << """
                subprojects {
                    apply plugin: 'cpp-library'
                    apply plugin: 'maven-publish'
    
                    group = 'some.group'
                    version = '1.2'
                    publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

         * If you update the project names then make sure you run gradle eclipse from the root, e.g. for all subprojects.
         * The reason is that there may be subprojects that depend on the subproject with amended eclipse project name.
         * So you want them to be generated as well because the project dependencies in .classpath need to refer to the amended project name.
         * Basically, for non-trivial projects it is recommended to always run gradle eclipse from the root.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        abstract int getMaxDistributionSizeBytes()
    
        /**
         * Change this whenever you add or remove subprojects for distribution core modules (lib/).
         */
        int getCoreLibJarsCount() {
            69
        }
    
        /**
         * Change this whenever you add or remove subprojects for distribution-packaged plugins (lib/plugins).
         */
        int getPackagedPluginsJarCount() {
            80
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

                include 'api'
                include 'util'
                include 'other'
            """
    
            file("build.gradle") << """
                apply plugin: 'java'
    
                subprojects {
                    apply plugin: 'java'
                    apply plugin: 'idea'
                }
    
                project(':api') {
                    dependencies {
                        implementation project(':util')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    15818 ?        Sl     2:15 /opt/jdk/oracle-jdk-8/bin/java -DintegTest.gradleHomeDir=/home/tcagent1/agent/work/668602365d1521fc/subprojects/test-kit/build/integ test -DintegTest.gradleUserHomeDir=/home/tcagent1/agent/work/668602365d1521fc/intTestHomeDir -DintegTest.toolingApiShadedJarDir=/home/tcagent1/agent/work/668602365d1521fc/subprojects/tooling-api/build/shaded-jar -Djava.security.manager=worker.org.gradle.process.internal.worker.child.BootstrapSecurityManager -Dorg.gradle.ci.agentCount=2...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

        }
    
        def "generates plugin application events where project configuration is subprojects closure"() {
            given:
            def events = ProgressEvents.create()
            settingsFile << """
                rootProject.name = 'multi'
                include 'a', 'b'
            """
            buildFile << """
                subprojects { apply plugin: 'java' }
            """
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

        }
    
        // TODO: This could be made more generic by passing a list of subproject names
        // that includes 'googleTest'.
        void generateSettings() {
            project.copy {
                from(new File(projectTemplate, "settings.gradle"))
                into(destDir)
                expand([
                    rootProjectName: name,
                    subprojects: subprojectNames
                ])
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

        }
    
        def "substitutes external dependency for a subproject of the root build - #rootIsIncluded"() {
            given:
            def empty = file('empty').tap {
                it.mkdir()
            }
            mavenRepo.module("org.test", "subproject1", "2.0").publish()
            buildA.buildFile << """
                subprojects {
                    apply plugin: 'java-library'
                    group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    For instance, the following logic assumes that the subprojects will be evaluated when the artifactId is set:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    subprojects {
        publishing {
            publications {
                create<MavenPublication>("mavenJava") {
                    from(components["java"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    include::sample[dir="snippets/plugins/greetingPlugin/groovy",files="buildSrc/src/main/groovy/GreetingPlugin.gradle[]"]
    ====
    
    The `GreetingPlugin` can now be applied in other subprojects' builds by using its ID:
    
    ====
    include::sample[dir="snippets/plugins/greetingPlugin/kotlin",files="app/build.gradle.kts[tag=use-plugin]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top