Search Gradle plugins

Version 6.0.4

Created 19 February 2021.

Extension to Fork Plugin for reading encrypted properties like passwords.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects