Search Gradle plugins

Version 4.0.0 (latest)

4.0.0

Created 15 August 2024.

Gradle plugin which provides an Maven exec task

Using the plugins DSL:

plugins {
  id("com.github.dkorotych.gradle-maven-exec") version "4.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.dkorotych.gradle-maven-exec:gradle-maven-exec-plugin:4.0.0")
  }
}

apply(plugin = "com.github.dkorotych.gradle-maven-exec")

Using the plugins DSL:

plugins {
  id "com.github.dkorotych.gradle-maven-exec" version "4.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.dkorotych.gradle-maven-exec:gradle-maven-exec-plugin:4.0.0"
  }
}

apply plugin: "com.github.dkorotych.gradle-maven-exec"

Learn how to apply plugins to subprojects