Search Gradle plugins

Version 0.3.8 (latest)

Created 12 December 2023.

Atlas plugin, used as a database schema provider to Atlas.

Using the plugins DSL:

plugins {
  id("io.atlasgo.hibernate-provider-gradle-plugin") version "0.3.8"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.atlasgo.hibernate-provider-gradle-plugin" version "0.3.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.atlasgo:gradle-plugin:0.3.8"
  }
}

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

Learn how to apply plugins to subprojects