Owner:
Semyon Levin
Plugin that fixes split package situation of JSR 205 and JSR 305 artifacts.
Version 1.0.191
Created 19 May 2020.
Plugin that fixes split package situation of JSR 205 and JSR 305 artifacts. Min Gradle version: 4.5.
Add this plugin to your build using the plugins DSL:
plugins {
id("name.remal.experimental-jsr205-jsr305-split-package-fixer") version "1.0.191"
}
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("name.remal.experimental-jsr205-jsr305-split-package-fixer:name.remal.experimental-jsr205-jsr305-split-package-fixer.gradle.plugin:1.0.191") }It can then be applied in the precompiled script plugin:plugins { id("name.remal.experimental-jsr205-jsr305-split-package-fixer") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("name.remal.experimental-jsr205-jsr305-split-package-fixer:name.remal.experimental-jsr205-jsr305-split-package-fixer.gradle.plugin:1.0.191") } } apply(plugin = "name.remal.experimental-jsr205-jsr305-split-package-fixer") - Applying plugins to all subprojects .