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.1.0-beta.3
Created 15 December 2020.
Configures conventions for Xenit private packages
Using the plugins DSL:
plugins {
id("eu.xenit.enterprise-conventions.private") version "0.1.0-beta.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("eu.xenit.gradle:enterprise-conventions-plugin:0.1.0-beta.3")
}
}
apply(plugin = "eu.xenit.enterprise-conventions.private")
Using the plugins DSL:
plugins {
id "eu.xenit.enterprise-conventions.private" version "0.1.0-beta.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "eu.xenit.gradle:enterprise-conventions-plugin:0.1.0-beta.3"
}
}
apply plugin: "eu.xenit.enterprise-conventions.private"