Search Gradle plugins

Version 2.0.0 (latest)

2.0.0

Created 21 October 2023.

Unofficial Gradle Plugin for DataNucleus JPA/JDO provider

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.rm3l.datanucleus-gradle-plugin") version "2.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.rm3l:datanucleus-gradle-plugin:2.0.0")
      }
    }
    
    apply(plugin = "org.rm3l.datanucleus-gradle-plugin")
  • Applying plugins to all subprojects .