Search Gradle plugins

de.mehtrick.bjoern.gradle-plugin

Owner: Mehtrick

Bjoern is a universal bdd test generater (and a person). The main focus is to generate java-classes from bdd-style text files to ensure synchronisation between the specification and the code.

https://github.com/Mehtrick/bjoern

Sources: https://github.com/Mehtrick/bjoern

Version 1.3.1

Created 26 October 2022.

Bjoern is a universal bdd test generater (and a person). The main focus is to generate java-classes from bdd-style text files to ensure synchronisation between the specification and the code.

Using the plugins DSL:

plugins {
  id("de.mehtrick.bjoern.gradle-plugin") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.mehtrick:bjoern-gradle-plugin:1.3.1")
  }
}

apply(plugin = "de.mehtrick.bjoern.gradle-plugin")

Using the plugins DSL:

plugins {
  id "de.mehtrick.bjoern.gradle-plugin" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.mehtrick:bjoern-gradle-plugin:1.3.1"
  }
}

apply plugin: "de.mehtrick.bjoern.gradle-plugin"

Learn how to apply plugins to subprojects