Search Gradle plugins

Version 4.2.2

Created 28 February 2020.

Extension to Fork Plugin for reading encrypted properties like passwords.

Using the plugins DSL:

plugins {
  id("com.neva.fork.props") version "4.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.neva.gradle:fork-plugin:4.2.2")
  }
}

apply(plugin = "com.neva.fork.props")

Using the plugins DSL:

plugins {
  id "com.neva.fork.props" version "4.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.neva.gradle:fork-plugin:4.2.2"
  }
}

apply plugin: "com.neva.fork.props"

Learn how to apply plugins to subprojects