Search Gradle plugins

org.eclipse.edc.edc-build

Plugin that applies the base capabilities and provides default configuration for the EDC build

https://projects.eclipse.org/projects/technology.edc

Sources: https://github.com/eclipse-edc/GradlePlugins.git

Version 0.1.0-alpha2

Created 30 July 2025.

Plugin that applies the base capabilities and provides default configuration for the EDC build

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.eclipse.edc.edc-build") version "0.1.0-alpha2"
}

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