Search Gradle plugins

Version 0.1.1-SNAPSHOT (latest)

Created 19 March 2020.

generate java constants from properties file keys

Using the plugins DSL:

plugins {
  id("org.manathome.props2consts") version "0.1.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.manathome.props2consts:plugin:0.1.1-SNAPSHOT")
  }
}

apply(plugin = "org.manathome.props2consts")

Using the plugins DSL:

plugins {
  id "org.manathome.props2consts" version "0.1.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.manathome.props2consts:plugin:0.1.1-SNAPSHOT"
  }
}

apply plugin: "org.manathome.props2consts"

Learn how to apply plugins to subprojects