Search Gradle plugins

Version 0.1.0 (latest)

Created 21 October 2020.

Parent POM plugin for sshoogr Projects

Using the plugins DSL:

plugins {
  id("com.aestasit.sshoogr.gradle.sshoogr-parentpom") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.aestasit.sshoogr.gradle:sshoogr-parentpom:0.1.0")
  }
}

apply(plugin = "com.aestasit.sshoogr.gradle.sshoogr-parentpom")

Using the plugins DSL:

plugins {
  id "com.aestasit.sshoogr.gradle.sshoogr-parentpom" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.aestasit.sshoogr.gradle:sshoogr-parentpom:0.1.0"
  }
}

apply plugin: "com.aestasit.sshoogr.gradle.sshoogr-parentpom"

Learn how to apply plugins to subprojects