com.aestasit.sshoogr.gradle.sshoogr-parentbuild
Owner: Andrey Adamovich
Parent build plugin for sshoogr Projects
https://github.com/sshoogr/sshoogr-parent
Sources: https://github.com/sshoogr/sshoogr-parent
Version 0.1.0 (latest)
0.1.0
Created 21 October 2020.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Parent build plugin for sshoogr Projects
Using the plugins DSL:
plugins {
id("com.aestasit.sshoogr.gradle.sshoogr-parentbuild") 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-parentbuild:0.1.0")
}
}
apply(plugin = "com.aestasit.sshoogr.gradle.sshoogr-parentbuild")
Using the plugins DSL:
plugins {
id "com.aestasit.sshoogr.gradle.sshoogr-parentbuild" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.aestasit.sshoogr.gradle:sshoogr-parentbuild:0.1.0"
}
}
apply plugin: "com.aestasit.sshoogr.gradle.sshoogr-parentbuild"