Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for multi_project_builds (0.43 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_builds.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[multi_project_builds]]
    = Structuring Projects with Gradle
    
    It is important to structure your Gradle project to optimize build performance.
    A multi-project build is the standard in Gradle.
    
    image::structuring-builds-1.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:33:43 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/structuring_software_products_details.adoc

    // limitations under the License.
    
    [[tweaking_structure]]
    = Multi-project Build Considerations and Optimizations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 824 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/structuring_software_products.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[structure_large_projects]]
    = Structuring Large Projects
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 804 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/fine_tuning_project_layout.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[fine_tuning_project_layout]]
    = Fine-Tuning the Project Layout
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 806 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

     - Consuming JVM libraries using link:{userManualPath}/core_dependency_management.html[dependency management]
     - link:{userManualPath}/publishing_setup.html[Publishing JVM libraries]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    org.gradle.jvmargs=-Xmx1536m
    # When configured, Gradle will run in incubating parallel mode.
    # This option should only be used with decoupled projects. More details, visit
    # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
    # org.gradle.parallel=true
    # AndroidX package structure to make it clearer which packages are bundled with the
    # Android operating system, and which are packaged with your app's APK
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
     - link:{userManualPath}/multi_project_builds.html[Working with multi-project builds]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SimpleGlobalFilesBuildSettingsDescriptor.java

                .fileComment(documentationRegistry.getDocumentationRecommendationFor("detailed information on multi-project builds", "multi_project_builds"));
            if (settings.getModularizationOption() == ModularizationOption.WITH_LIBRARY_PROJECTS && settings.isUseIncubatingAPIs()) {
                builder.includePluginsBuild();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr7_writing_plugins.adoc

    }
    ----
    
    Congratulations, you have completed the tutorial!
    
    == Step 4. Next steps
    We recommend going through each section of the User Manual.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    Any task you run in the root project folder will cause that same-named task to be run on all the children.
    
    You can run `gradle build` to build and test ALL projects.
    
    Consult the <<multi_project_builds.adoc#multi_project_builds,Structuring Builds chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top