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.3.2

0.3.2

Created 03 December 2021.

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.3.2"
}

See also:

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