Search Gradle plugins

org.smartbit4all.platform.gradle.vaadin-module

Generic plugin for use with smartbit4all based projects, adds Vaadin dependencies for module development.

https://github.com/smartbit4all

Sources: https://github.com/smartbit4all/platform-gradle.git

Version 0.5.1

0.5.1

Created 15 October 2024.

Generic plugin for use with smartbit4all based projects, adds Vaadin dependencies for module development.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.smartbit4all.platform.gradle.vaadin-module") version "0.5.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.smartbit4all.platform.gradle:platform-gradle:0.5.1")
      }
    }
    
    apply(plugin = "org.smartbit4all.platform.gradle.vaadin-module")
  • Applying plugins to all subprojects .