Search Gradle plugins

Version 6.0.7

6.0.7

Created 14 May 2022.

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

See also:

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