ru.vyarus.java-lib
Owner: Vyacheslav Rusakov
Common gradle configuration for Java/Groovy library
https://github.com/xvik/gradle-java-lib-plugin
Sources: https://github.com/xvik/gradle-java-lib-plugin.git
Version 3.0.0 (latest)
Created 10 March 2024.
Common gradle configuration for Java or Groovy library
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.vyarus.java-lib") version "3.0.0"
}
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("ru.vyarus.java-lib:ru.vyarus.java-lib.gradle.plugin:3.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("ru.vyarus.java-lib") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.vyarus.java-lib:ru.vyarus.java-lib.gradle.plugin:3.0.0") } } apply(plugin = "ru.vyarus.java-lib")
- Applying plugins to all subprojects .