Search Gradle plugins

org.opendevstack.gradle.conventions

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)

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"

Learn how to apply plugins to subprojects