Search Gradle plugins

com.neva.fork

Project generator based on live archetypes (example projects) & interactive 'gradle.properties' file generator.

https://github.com/neva-dev/gradle-fork-plugin

Sources: https://github.com/neva-dev/gradle-fork-plugin.git

Version 7.0.0

Created 27 April 2021.

Project generator based on live archetypes (example projects) & interactive 'gradle.properties' file generator.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.neva.fork" version "7.0.0"
}

Using legacy plugin application:

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

apply plugin: "com.neva.fork"

Learn how to apply plugins to subprojects