Search Gradle plugins

io.github.peacetrue.build-convention

Prepare the test environment. Automatically invoke JacocoPlugin, TestReportAggregationPlugin, JacocoReportAggregationPlugin and useJUnitPlatform

https://github.com/peacetrue/peacetrue-gradle

Sources: https://github.com/peacetrue/peacetrue-gradle.git

Version 1.2.1 (latest)

Created 25 November 2023.

Prepare the test environment. Automatically invoke JacocoPlugin, TestReportAggregationPlugin, JacocoReportAggregationPlugin and useJUnitPlatform

Using the plugins DSL:

plugins {
  id("io.github.peacetrue.build-convention") version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.peacetrue:peacetrue-gradle-plugin:1.2.1")
  }
}

apply(plugin = "io.github.peacetrue.build-convention")

Using the plugins DSL:

plugins {
  id "io.github.peacetrue.build-convention" version "1.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.peacetrue:peacetrue-gradle-plugin:1.2.1"
  }
}

apply plugin: "io.github.peacetrue.build-convention"

Learn how to apply plugins to subprojects