eu.xenit.enterprise-conventions.private
Owner: Xenit solutions
Configures conventions for Xenit private packages
https://github.com/xenit-eu/enterprise-conventions-gradle-plugin
Sources: https://github.com/xenit-eu/enterprise-gradle-plugin
Version 0.5.1 (latest)
0.5.1
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"