Search Gradle plugins

com.github.upthewaterspout.jpf

Plugin that automatically downloads and configures Java Path Finder for your gradle project

https://github.com/upthewaterspout/jpf-gradle

Sources: https://github.com/upthewaterspout/jpf-gradle

Version 0.3 (latest)

Created 25 August 2017.

Plugin that automatically downloads and configures Java Path Finder for your gradle project

Using the plugins DSL:

plugins {
  id("com.github.upthewaterspout.jpf") version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.upthewaterspout.jpfgradle:jpfgradle:0.3")
  }
}

apply(plugin = "com.github.upthewaterspout.jpf")

Using the plugins DSL:

plugins {
  id "com.github.upthewaterspout.jpf" version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.upthewaterspout.jpfgradle:jpfgradle:0.3"
  }
}

apply plugin: "com.github.upthewaterspout.jpf"

Learn how to apply plugins to subprojects