com.byteyears.engineering.gradle-core-lib
Owner: Palamayuran Surenthiran
Human readable description for Gradle Core Library.
https://byteyears.com/engineering/infra/gradle-core-lib
Sources: https://github.com
Version 1.0.0-RELEASE (latest)
1.0.0-RELEASE
Created 28 December 2019.
Human readable description for Gradle Core Library.
Using the plugins DSL:
plugins {
id("com.byteyears.engineering.gradle-core-lib") version "1.0.0-RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.byteyears.engineering:gradle-core-lib:1.0.0-RELEASE")
}
}
apply(plugin = "com.byteyears.engineering.gradle-core-lib")
Using the plugins DSL:
plugins {
id "com.byteyears.engineering.gradle-core-lib" version "1.0.0-RELEASE"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.byteyears.engineering:gradle-core-lib:1.0.0-RELEASE"
}
}
apply plugin: "com.byteyears.engineering.gradle-core-lib"