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.17 (latest)

Created 11 July 2024.

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("info.offthecob.Service") version "1.0.17"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("info.offthecob.Service:info.offthecob.Service.gradle.plugin:1.0.17")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("info.offthecob.Service")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("info.offthecob.Service:info.offthecob.Service.gradle.plugin:1.0.17")
      }
    }
    
    apply(plugin = "info.offthecob.Service")
  • Applying plugins to all subprojects .