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.1

2.0.1

Created 24 November 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.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.ms.gradle:application:2.0.1")
      }
    }
    
    apply(plugin = "com.ms.gradle.application")
  • Applying plugins to all subprojects .