neva.openjpa
Owner: Krystian Panek
Plugin for enhancing JPA entity classes at compile time to be ready for OpenJPA. Especially useful when combined with Javarel Framework
Sources: https://github.com/neva-dev/gradle-openjpa-plugin
Version 1.0.1 (latest)
1.0.1
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"