Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for make (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    If the component does have multiple artifacts, each one is identified by a cumbersome _classifier_.
    There are no common semantics associated with classifiers and that makes it difficult to guarantee a globally consistent dependency graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    class MyPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            println("Plugin ${this.javaClass.simpleName} applied on ${project.name}")
        }
    }
    
    apply<MyPlugin>()
    ----
    
    Let's take a rudimentary example of a plugin written in a file called `other.gradle` located in the same directory as the `build.gradle` file:
    
    [source, other.gradle]
    ----
    public class Other implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top