Search Gradle plugins

dev.madetobuild.typedconfig

Owner: Max

Automatically configure generator and runtime for TypedConfig, a strongly-typed configuration library

https://github.com/nanodeath/TypedConfig

Sources: https://github.com/nanodeath/TypedConfig

Version 0.2 (latest)

Created 01 March 2022.

Automatically configure generator and runtime for TypedConfig, a strongly-typed configuration library

Using the plugins DSL:

plugins {
  id("dev.madetobuild.typedconfig") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.madetobuild.typedconfig:typedconfig-gradle-plugin:0.2")
  }
}

apply(plugin = "dev.madetobuild.typedconfig")

Using the plugins DSL:

plugins {
  id "dev.madetobuild.typedconfig" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.madetobuild.typedconfig:typedconfig-gradle-plugin:0.2"
  }
}

apply plugin: "dev.madetobuild.typedconfig"

Learn how to apply plugins to subprojects