MVN

com.vaadin : hilla-gradle-plugin

Maven & Gradle

Jun 11, 2024

Gradle Plugin for Hilla Engine · This maven module act as a proxy to test, build, and release the hilla gradle plugin, which is written in Kotlin and is built by gradle natively. This makes development and testing of the gradle plugin much easier against the changes of flow, especially the engine-core. However, publishing the hilla-gradle-plugin to gradle plugin central repo is done within platform final releases.

<dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>hilla-gradle-plugin</artifactId>
    <version>24.4.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.vaadin : hilla-gradle-plugin to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 24.4.0

All Versions

Choose a version of com.vaadin : hilla-gradle-plugin to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
24.4.x
hilla-gradle-plugin-24.4.0

How to add a dependency to Maven

Add the following com.vaadin : hilla-gradle-plugin maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>hilla-gradle-plugin</artifactId>
    <version>24.4.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.vaadin : hilla-gradle-plugin gradle dependency to your build.gradle file:

implementation 'com.vaadin:hilla-gradle-plugin:24.4.0'

Gradle Kotlin DSL: Add the following com.vaadin : hilla-gradle-plugin gradle kotlin dependency to your build.gradle.kts file:

implementation("com.vaadin:hilla-gradle-plugin:24.4.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.vaadin : hilla-gradle-plugin sbt scala dependency to your build.sbt file:

libraryDependencies += "com.vaadin" % "hilla-gradle-plugin" % "24.4.0"

Advertisement