Search Gradle plugins

Version 0.1.8

0.1.8

Created 09 August 2019.

Build your Delphi Projects with Gradle

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects