io.github.mfederczuk.build-constants
Owner: Michael Federczuk
Plugin to generate Kotlin constants during build time.
https://github.com/mfederczuk/build-constants-gradle-plugin#readme
Sources: https://github.com/mfederczuk/build-constants-gradle-plugin
Version 0.1.0-indev01
0.1.0-indev01
Created 31 August 2024.
Plugin to generate Kotlin constants during build time.
Using the plugins DSL:
plugins {
id("io.github.mfederczuk.build-constants") version "0.1.0-indev01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.mfederczuk:build-constants-gradle-plugin:0.1.0-indev01")
}
}
apply(plugin = "io.github.mfederczuk.build-constants")
Using the plugins DSL:
plugins {
id "io.github.mfederczuk.build-constants" version "0.1.0-indev01"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.mfederczuk:build-constants-gradle-plugin:0.1.0-indev01"
}
}
apply plugin: "io.github.mfederczuk.build-constants"