Search Gradle plugins

Version 3.4.0

3.4.0

Created 20 October 2015.

The plugin applies best practices and conventions for developing Java based microservices@welt

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.weltn24.java-conventions") version "3.4.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.weltn24:java-conventions:3.4.0")
      }
    }
    
    apply(plugin = "de.weltn24.java-conventions")
  • Applying plugins to all subprojects .