Search Gradle plugins

Owner: ekino

Java plugin applying some configuration for your builds (mavenPublish, testSets, etc ...)

https://github.com/ekino/gradle-java-plugin

Sources: https://github.com/ekino/gradle-java-plugin

Version 1.0.4

Created 25 March 2020.

Java plugin applying some configuration for your builds (mavenPublish, testSets, etc ...)

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.ekino.oss.gradle.plugin.java") version "1.0.4"
}

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.ekino.oss.gradle.plugin.java:com.ekino.oss.gradle.plugin.java.gradle.plugin:1.0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.ekino.oss.gradle.plugin.java")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.ekino.oss.gradle.plugin.java:com.ekino.oss.gradle.plugin.java.gradle.plugin:1.0.4")
      }
    }
    
    apply(plugin = "com.ekino.oss.gradle.plugin.java")
  • Applying plugins to all subprojects .