com.ms.gradle.application
Owner: Morgan Stanley Open Source
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.ms.gradle.application") version "2.0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.ms.gradle.application:com.ms.gradle.application.gradle.plugin:2.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.ms.gradle.application") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.ms.gradle.application:com.ms.gradle.application.gradle.plugin:2.0.2") } } apply(plugin = "com.ms.gradle.application")
- Applying plugins to all subprojects .