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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.3pc:gradle-development-plugin:0.2.1")
  }
}

apply(plugin = "de.3pc.development")

Using the plugins DSL:

plugins {
  id "de.3pc.development" version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.3pc:gradle-development-plugin:0.2.1"
  }
}

apply plugin: "de.3pc.development"

Learn how to apply plugins to subprojects