这是indexloc提供的服务,不要输入任何密码

Search Gradle plugins

Version 0.9.6 (latest)

Created 16 June 2021.

Plugin developed for the Hibernate project to handle JakartaTransformer processing

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.hibernate.jakarta-transformer") version "0.9.6"
}

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("org.hibernate.jakarta-transformer:org.hibernate.jakarta-transformer.gradle.plugin:0.9.6")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.hibernate.jakarta-transformer")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.hibernate.jakarta-transformer:org.hibernate.jakarta-transformer.gradle.plugin:0.9.6")
      }
    }
    
    apply(plugin = "org.hibernate.jakarta-transformer")
  • Applying plugins to all subprojects .