Search Gradle plugins

Version 0.5.1 (latest)

Created 26 February 2024.

Configures conventions for Xenit private packages

Using the plugins DSL:

plugins {
  id("eu.xenit.enterprise-conventions.private") version "0.5.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "eu.xenit.enterprise-conventions.private" version "0.5.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects