Search Gradle plugins

Version 6.0.6

6.0.6

Created 20 October 2021.

The Baseline Gradle plugin lets you verify that the OSGi semantic versioning rules are obeyed by your OSGi bundle.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.baseline") version "6.0.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.liferay:gradle-plugins-baseline:6.0.6")
      }
    }
    
    apply(plugin = "com.liferay.baseline")
  • Applying plugins to all subprojects .