Search Gradle plugins

Version 5.5.10-test4 (latest)

5.5.10-test4

Created 27 June 2024.

Generate CCD Configuration from code

Using the plugins DSL:

plugins {
  id("hmcts.ccd.sdk") version "5.5.10-test4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("uk.gov.hmcts.reform:ccd-gradle-plugin:5.5.10-test4")
  }
}

apply(plugin = "hmcts.ccd.sdk")

Using the plugins DSL:

plugins {
  id "hmcts.ccd.sdk" version "5.5.10-test4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "uk.gov.hmcts.reform:ccd-gradle-plugin:5.5.10-test4"
  }
}

apply plugin: "hmcts.ccd.sdk"

Learn how to apply plugins to subprojects