Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 270 for subproject1 (1.33 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/java/ParallelTestTaskIntegrationTest.groovy

                latch.countDown()
                latch.await()
                println path + " go"
            }
    
            executable = "$java"
        }
    }
    """
            subprojects.each { subproject ->
                settingsFile << "include '$subproject'\n"
                file("${subproject}/src/test/java/ThingTest.java") << """
    import org.junit.Test;
    import static org.junit.Assert.*;
    
    public class ThingTest {
        @Test
        public void verify() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                    FunctionalTestBucket(it as JSONObject).toBuildTypeBucket(model.subprojects)
                }
    
                // Sometimes people may add new subproject into `subprojects.json`
                // in this case we have no historical test running time, so we simply add these subprojects into first available bucket
                val allSubprojectsInBucketJson = buckets.flatMap { it.subprojects.map { it.name } }.toSet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    Gradle can build the root project and any number of the subprojects in a single execution.
    
    [[sub:project_locations]]
    == Project locations
    
    Multi-project builds contain a single root project in a directory that Gradle views as the root path: `.`.
    
    Subprojects are located physically under the root path: `./subproject`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

            }
    
            when:
            buildFile << '''
                subprojects {
                    java { withSourcesJar() }
                }
            '''
            then:
            succeeds(':a:sourcesJar')
        }
    
        def "project packages own and runtime dependency sources if requested"() {
            given:
            buildFile << '''
                subprojects {
                    java {
                        withSourcesJar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    │   │   └──...
    │   └── build.gradle
    └── settings.gradle
    ----
    =====
    
    In this example, there are three subprojects called `shared`, `api`, and `person-service`:
    
    1. The `person-service` subproject depends on the other two subprojects, `shared` and `api`.
    2. The `api` subproject depends on the `shared` subproject.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/templates/root-project/build.xml

    <project>
        <property name="lib.dir" location="lib/test"/>
    
    <% ['clean', 'jar', 'build'].each { target -> %>
        <target name="$target">
            <% subprojects.each { subproject -> %>
                <ant dir="$subproject" target="$target">
                    <property name="lib.dir" location="\${lib.dir}"/>
                </ant>
            <%  } %>
        </target>
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 374 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    An improper way to share build logic between subprojects is _cross-project configuration_ via the link:{javadocPath}//org/gradle/api/Project.html#subprojects-groovy.lang.Closure-[`subprojects {}`] and link:{javadocPath}/org/gradle/api/Project.html#allprojects-groovy.lang.Closure-[`allprojects {}`] DSL constructs.
    
    TIP:  Avoid using `subprojects {}` and `allprojects {}`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents/settings.gradle

    rootProject.name = '${rootProjectName}'
    <%
    subprojects.each { subproject ->
        out.println "include '$subproject'"
    }
    %>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 143 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_basics.adoc

    <3> Gradle wrapper scripts
    <4> Gradle settings file to define a root project name and subprojects
    <5> Gradle build scripts of the two subprojects - `subproject-a` and `subproject-b`
    <6> Source code and/or additional files for the projects
    
    == Invoking Gradle
    
    === IDE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    <3> Gradle wrapper start scripts
    <4> Settings file to define build name and subprojects
    <5> Build script for `app` subproject
    <6> Default Java source folder for `app` subproject
    <7> Default Java test source folder for `app` subproject
    =====
    
    The `authoring-tutorial` folder is the *root project directory*.
    Inside the root project directory are one or more subprojects, build scripts, and the Gradle wrapper.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top