搜索Gradle插件

版本 0.1 (最新版)

0.1

创建于 2023年11月27日。

Atlas插件,用作数据库架构提供者向Atlas。

使用插件DSL

plugins {
  id("io.atlasgo.hibernate-provider") version "0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.atlasgo:hibernate-provider:0.1")
  }
}

apply(plugin = "io.atlasgo.hibernate-provider")

使用插件DSL

plugins {
  id "io.atlasgo.hibernate-provider" version "0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.atlasgo:hibernate-provider:0.1"
  }
}

apply plugin: "io.atlasgo.hibernate-provider"

了解如何将插件应用到子项目