搜索Gradle插件

info.offthecob.Service

所有者: whodevil

此插件包含来自`info.offthecob.Base`的所有工作,但包括用于构建容器的`jib`。

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

来源: https://github.com/whodevil/jvm-platform.git

版本 1.0.17 (最新)

1.0.17

创建于2024年7月11日。

此插件包含来自'info.offthecob.Base'的所有工作,但包括用于构建容器的'jib'。

使用插件DSL

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

使用旧插件应用程序

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

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

使用插件DSL

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

使用旧插件应用程序

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

apply plugin: "info.offthecob.Service"

学习如何将插件应用到子项目中