Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for custom_gradle_types (0.22 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    [source,groovy]
    ----
    abstract class BaseCountingService implements BuildService<CountingParams>, AutoCloseable {
    
    }
    ----
    
    A build service implementation is treated as a <<custom_gradle_types.adoc#custom_gradle_types,custom Gradle type>> and can use any of the features available to custom Gradle types.
    
    A build service can optionally take parameters, which Gradle injects into the service instance when creating it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    The parameters must be represented using <<custom_gradle_types.adoc#managed_properties,managed properties>> and the parameters type must be a <<custom_gradle_types.adoc#managed_types,managed type>>.
    You can use an interface or abstract class declaring the getters and Gradle will generate the implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    ----
    
    In the example above, a deployment task is created dynamically for every user-configured environment.
    
    You can find out more about implementing project extensions in <<custom_gradle_types.adoc#custom_gradle_types,Developing Custom Gradle Types>>.
    
    [[modeling_dsl_like_apis]]
    == Modeling DSL-like APIs
    DSLs exposed by plugins should be readable and easy to understand.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ====
    
    ==== Next to the property declaration
    
    You may configure a convention on a lazy property next to the place where the property is declared.
    Note this option is not available for <<custom_gradle_types.adoc#managed_properties,managed properties>>, and has the same caveats as configuring a convention from the task constructor.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top