Search Gradle plugins

de.3pc.development

Owner: 3pc GmbH

Pre configured external plugins for 3pc Java Projects, helps to reduce boiler plate configs and push standards.

https://3pc.de

Sources: https://github.com/3pc-Berlin/gradle-development-plugin

Version 0.0.12

0.0.12

Created 05 October 2023.

Pre configured external plugins for 3pc Java Projects, helps to reduce boiler plate configs and push standards.

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.3pc.development") version "0.0.12"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.3pc:gradle-development-plugin:0.0.12")
      }
    }
    
    apply(plugin = "de.3pc.development")
  • Applying plugins to all subprojects .