Search Gradle plugins

info.offthecob.Library

Owner: whodevil

This plugin contains all the work from `info.offthecob.Base` but includes `java-library` for building jvm libraries.

https://github.com/whodevil/offthecob-platform

Sources: https://github.com/whodevil/jvm-platform.git

Version 1.0.15 (latest)

Created 01 October 2023.

This plugin contains all the work from 'info.offthecob.Base' but includes 'java-library' for
building jvm libraries.

Using the plugins DSL:

plugins {
  id("info.offthecob.Library") version "1.0.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("info.offthecob:plugins:1.0.15")
  }
}

apply(plugin = "info.offthecob.Library")

Using the plugins DSL:

plugins {
  id "info.offthecob.Library" version "1.0.15"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "info.offthecob:plugins:1.0.15"
  }
}

apply plugin: "info.offthecob.Library"

Learn how to apply plugins to subprojects