Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for feature_lifecycle (0.3 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.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.
    
    [[feature_lifecycle]]
    = The Feature Lifecycle
    
    Gradle is under constant development. New versions are delivered on a regular and frequent basis (approximately every six weeks) as described in <<#eol_support,the section on end-of-life support>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ElementWarningsRenderer.java

                Element link = document.createElement("ulink");
                para.appendChild(link);
                link.setAttribute("url", "../userguide/feature_lifecycle.html");
                link.appendChild(document.createTextNode("deprecated"));
                para.appendChild(document.createTextNode(" and will be removed in the next major version of Gradle."));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/README.adoc

    NOTE: This sample shows how to adopt an link:sample_java_modules_multi_project_with_integration_tests.html[existing sample] for use with Test Suites.
    
    IMPORTANT: Test Suites are an link:{userManualPath}/feature_lifecycle.html#sec:incubating_state[incubating] feature, and the details described here may change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/README.adoc

    NOTE: There is also a link:sample_incubating_java_modules_multi_project_with_integration_tests.html[new sample] demonstrating how to use the link:{userManualPath}/feature_lifecycle.html#sec:incubating_state[incubating] link:{userManualPath}/jvm_test_suite_plugin.html[Test Suite Plugin] in this scenario.
    
    Here, we add an additional source set _integrationTest_ with a `module-info.java`.
    
    ```
    src
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[dataflow_action]]
    = Dataflow Actions
    
    NOTE: The dataflow actions support is an <<feature_lifecycle.adoc#feature_lifecycle,incubating>> feature and is subject to change.
    
    A preferred way of executing work in a Gradle build is using a task.
    However, some kinds of work do not fit tasks well, such as custom handling of the build failure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/README.adoc

    NOTE: This sample shows how to adopt an link:sample_jvm_multi_project_with_additional_test_types.html[existing sample] for use with Test Suites.
    
    IMPORTANT: Test Suites are an link:{userManualPath}/feature_lifecycle.html#sec:incubating_state[incubating] feature, and the details described here may change.
    
    In this sample, we are testing Java projects with JUnit5; however, this applies to other JVM languages as well.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/release/notes.md

    ## Promoted features
    Promoted features are features that were incubating in previous versions of Gradle but are now supported and subject to backward compatibility.
    See the User Manual section on the “[Feature Lifecycle](userguide/feature_lifecycle.html)” for more information.
    
    The following are the features that have been promoted in this Gradle release.
    
    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    ----
    ====
    
    [[sec:service_references]]
    === Annotating a shared build service property with `@ServiceReference`
    
    NOTE: The `@ServiceReference` annotation is an <<feature_lifecycle.adoc#feature_lifecycle,incubating>> API and is subject to change in a future release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/release/notes-template.md

    ## Promoted features
    Promoted features are features that were incubating in previous versions of Gradle but are now supported and subject to backward compatibility.
    See the User Manual section on the “[Feature Lifecycle](userguide/feature_lifecycle.html)” for more information.
    
    The following are the features that have been promoted in this Gradle release.
    
    <!--
    ### Example promoted
    -->
    
    ## Fixed issues
    
    <!--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

                    "The feature flag is no longer relevant, please remove it from your settings file. " +
                    "See https://docs.gradle.org/current/userguide/feature_lifecycle.html#feature_preview for more details.")
    
            then:
            succeeds()
    
            where:
            feature << FeaturePreviewsActivationFixture.inactiveFeatures()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top