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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.neva.gradle.plugin:openjpa:1.0.1")
  }
}

apply(plugin = "neva.openjpa")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.neva.gradle.plugin:openjpa:1.0.1"
  }
}

apply plugin: "neva.openjpa"

Learn how to apply plugins to subprojects