Search Gradle plugins

Version 0.5.2 (latest)

Created 13 June 2019.

A Gradle plugin that executes Java Jar files.

Using the plugins DSL:

plugins {
  id("com.lingocoder.jarexec") version "0.5.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.lingocoder:jarexec.plugin:0.5.2")
  }
}

apply(plugin = "com.lingocoder.jarexec")

Using the plugins DSL:

plugins {
  id "com.lingocoder.jarexec" version "0.5.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.lingocoder:jarexec.plugin:0.5.2"
  }
}

apply plugin: "com.lingocoder.jarexec"

Learn how to apply plugins to subprojects