Search Gradle plugins

Version 1.1.0

1.1.0

Created 04 September 2016.

Extends maven-publish plugin abilities

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.vyarus.pom") version "1.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.vyarus:gradle-pom-plugin:1.1.0")
      }
    }
    
    apply(plugin = "ru.vyarus.pom")
  • Applying plugins to all subprojects .