Approval confirmation
Approval confirmation
Delete plugin confirmation
To confirm the plugin deletion insert pluginId and author name
Deltafi
org.deltafi.plugin-convention
PluginId
Author
Version 2.0-beta12
2.0-beta12
Created 21 August 2024.
Convention used for a DeltaFi plugin
Other versions
- 2.0.0
- 2.0-rc22
- 2.0-rc21
- 2.0-rc20
- 2.0-rc19
- 2.0-rc18
- 2.0-rc17
- 2.0-rc16
- 2.0-rc15
- 2.0-rc14
- 2.0-rc12
- 2.0-rc11
- 2.0-rc10
- 2.0-rc9
- 2.0-rc8
- 2.0-rc7
- 2.0-rc6
- 2.0-rc5
- 2.0-rc4
- 2.0-rc3
- 2.0-rc2
- 2.0-rc1
- 2.0-beta21
- 2.0-beta20
- 2.0-beta18
- 2.0-beta17
- 2.0-beta15
- 2.0-beta14
- 2.0-beta11
- 2.0-beta10
- 2.0-beta9
- 2.0-beta8
- 2.0-beta7
- 2.0-beta6
- 2.0-beta5
- 2.0-beta4
- 2.0-beta3
- 2.0-beta2
- 2.0-beta1
- 2.0-alpha8
- 2.0-alpha7
- 2.0-alpha5
- 2.0-alpha4
- 2.0-alpha3
- 2.0-alpha2
- 2.0-alpha1
- 1.2.20
- 1.2.19
- 1.2.18
- 1.2.17
- 1.2.16
- 1.2.15
- 1.2.14
- 1.2.13
- 1.2.12
- 1.2.11
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.2-rc2
- 1.2-rc1
- 1.2-beta1
- 1.2-alpha7
- 1.2-alpha2
- 1.1.20
- 1.1.18
- 1.1.17
- 1.1.16
- 1.1.15
- 1.1.14
- 1.1.13
- 1.1.12
- 1.1.11
- 1.1.10
- 1.1.9
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.2
- 1.0.1
- 1.0.0
- 1.0.0-RC8
- 1.0.0-RC7
- 1.0.0-RC6
- 1.0.0-RC5
- 1.0.0-RC3
- 1.0.0-RC2
- 1.0.0-RC1
- 0.999.998
- 0.109.0
- 0.108.0
- 0.107.0
- 0.106.0
- 0.105.0
- 0.104.4
- 0.104.2
- 0.104.0
- 0.103.0
- 0.102.0
- 0.101.5
- 0.101.4
- 0.101.3
- 0.101.2
- 0.101.1
- 0.101.0
- 0.100.0
- 0.99.8
- 0.99.7
- 0.99.6
- 0.99.5
- 0.77.0
- 0.9.999
- 0.9.99
Using the plugins DSL:
plugins {
id("org.deltafi.plugin-convention") version "2.0-beta12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.deltafi.gradle-plugin:gradle-plugin:2.0-beta12")
}
}
apply(plugin = "org.deltafi.plugin-convention")
Using the plugins DSL:
plugins {
id "org.deltafi.plugin-convention" version "2.0-beta12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.deltafi.gradle-plugin:gradle-plugin:2.0-beta12"
}
}
apply plugin: "org.deltafi.plugin-convention"