de.heinrichmarkus.gradle.delphi
Owner: Markus Heinrich
Build your Delphi Projects with Gradle
https://github.com/heinrichmarkus/delphi-build-plugin
Sources: https://github.com/heinrichmarkus/delphi-build-plugin
Version 0.5.0 (latest)
0.5.0
Created 06 February 2022.
Build your Delphi Projects with Gradle
Using the plugins DSL:
plugins {
id("de.heinrichmarkus.gradle.delphi") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.heinrichmarkus.gradle:dbp:0.5.0")
}
}
apply(plugin = "de.heinrichmarkus.gradle.delphi")
Using the plugins DSL:
plugins {
id "de.heinrichmarkus.gradle.delphi" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.heinrichmarkus.gradle:dbp:0.5.0"
}
}
apply plugin: "de.heinrichmarkus.gradle.delphi"