org.opendevstack.gradle.conventions
Owner: BIX Digital Lab
This Gradle plugin sets basic OpenDevStack conventions when applied to a project, thus making the gradle project compatible to the build requirements.
https://github.com/opendevstack/ods-gradle-conventions
Sources: https://github.com/opendevstack/ods-gradle-conventions
Version 0.0.1 (latest)
0.0.1
Created 08 July 2022.
This Gradle plugin sets basic OpenDevStack conventions when applied to a project, thus making the gradle project compatible to the build requirements.
Using the plugins DSL:
plugins {
id("org.opendevstack.gradle.conventions") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.opendevstack.gradle:conventions-plugin:0.0.1")
}
}
apply(plugin = "org.opendevstack.gradle.conventions")
Using the plugins DSL:
plugins {
id "org.opendevstack.gradle.conventions" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.opendevstack.gradle:conventions-plugin:0.0.1"
}
}
apply plugin: "org.opendevstack.gradle.conventions"