Search Gradle plugins

Version 1.0.0-RELEASE (latest)

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"

Learn how to apply plugins to subprojects