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.4.0 (latest)
1.4.0
Created 19 April 2024.
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.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.mehtrick:bjoern-gradle-plugin:1.4.0")
}
}
apply(plugin = "de.mehtrick.bjoern.gradle-plugin")
Using the plugins DSL:
plugins {
id "de.mehtrick.bjoern.gradle-plugin" version "1.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.mehtrick:bjoern-gradle-plugin:1.4.0"
}
}
apply plugin: "de.mehtrick.bjoern.gradle-plugin"