Search Gradle plugins

Version 0.4.0

0.4.0

Created 20 October 2020.

Build your Delphi Projects with Gradle

Using the plugins DSL:

plugins {
  id("de.heinrichmarkus.gradle.delphi") version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.heinrichmarkus.gradle:dbp:0.4.0")
  }
}

apply(plugin = "de.heinrichmarkus.gradle.delphi")

Using the plugins DSL:

plugins {
  id "de.heinrichmarkus.gradle.delphi" version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.heinrichmarkus.gradle:dbp:0.4.0"
  }
}

apply plugin: "de.heinrichmarkus.gradle.delphi"

Learn how to apply plugins to subprojects