搜索Gradle插件

使用 插件DSL

plugins {
  id("com.vaadin.hilla") version "24.5.0.alpha9"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.vaadin:hilla-gradle-plugin:24.5.0.alpha9")
  }
}

apply(plugin = "com.vaadin.hilla")

使用 插件DSL

plugins {
  id "com.vaadin.hilla" version "24.5.0.alpha9"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.vaadin:hilla-gradle-plugin:24.5.0.alpha9"
  }
}

apply plugin: "com.vaadin.hilla"

了解如何将插件应用于子项目