Search Gradle plugins

neva.openjpa

Plugin for enhancing JPA entity classes at compile time to be ready for OpenJPA. Especially useful when combined with Javarel Framework

http://javarel.neva.zone/

Sources: https://github.com/neva-dev/gradle-openjpa-plugin

Version 1.0.1 (latest)

Created 22 October 2016.

Plugin for enhancing JPA entity classes at compile time to be ready for OpenJPA. Especially useful when combined with Javarel Framework

Add this plugin to your build using the plugins DSL:

plugins {
  id("neva.openjpa") version "1.0.1"
}

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