Search Gradle plugins

Version 0.3.0-rc.2

Created 06 October 2022.

Configures conventions for Xenit open source packages

Using the plugins DSL:

plugins {
  id("eu.xenit.enterprise-conventions.oss") version "0.3.0-rc.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("eu.xenit.gradle:enterprise-conventions-plugin:0.3.0-rc.2")
  }
}

apply(plugin = "eu.xenit.enterprise-conventions.oss")

Using the plugins DSL:

plugins {
  id "eu.xenit.enterprise-conventions.oss" version "0.3.0-rc.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "eu.xenit.gradle:enterprise-conventions-plugin:0.3.0-rc.2"
  }
}

apply plugin: "eu.xenit.enterprise-conventions.oss"

Learn how to apply plugins to subprojects