Search Gradle plugins

info.offthecob.Service

Owner: whodevil

This plugin contains all the work from `info.offthecob.Base` but includes `jib` for building containers.

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 'jib' for building
containers.

Using the plugins DSL:

plugins {
  id("info.offthecob.Service") 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.Service")

Using the plugins DSL:

plugins {
  id "info.offthecob.Service" 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.Service"

Learn how to apply plugins to subprojects