Search Gradle plugins

com.ms.gradle.application

Allows packaging your Java-based applications for distribution, much like Gradle's built-in Application plugin does, but in a more standard and more flexible way.

https://github.com/morganstanley/gradle-plugin-application

Sources: https://github.com/morganstanley/gradle-plugin-application

Version 2.0.2 (latest)

Created 07 December 2023.

Allows packaging your Java-based applications for distribution, much like Gradle's built-in Application plugin does, but in a more standard and more flexible way.

Using the plugins DSL:

plugins {
  id("com.ms.gradle.application") version "2.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ms.gradle:application:2.0.2")
  }
}

apply(plugin = "com.ms.gradle.application")

Using the plugins DSL:

plugins {
  id "com.ms.gradle.application" version "2.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ms.gradle:application:2.0.2"
  }
}

apply plugin: "com.ms.gradle.application"

Learn how to apply plugins to subprojects