Search Gradle plugins

com.liferay.baseline

Owner: Liferay

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

https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-baseline

Version 1.3.7

Created 17 October 2018.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay:gradle-plugins-baseline:1.3.7")
  }
}

apply(plugin = "com.liferay.baseline")

Using the plugins DSL:

plugins {
  id "com.liferay.baseline" version "1.3.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-baseline:1.3.7"
  }
}

apply plugin: "com.liferay.baseline"

Learn how to apply plugins to subprojects