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.2.1 (latest)

Created 16 January 2024.

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.2.1"
}

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