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.2
Created 28 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.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("de.mehtrick.bjoern.gradle-plugin") version "1.3.2"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("de.mehtrick.bjoern.gradle-plugin:de.mehtrick.bjoern.gradle-plugin.gradle.plugin:1.3.2") }It can then be applied in the precompiled script plugin:plugins { id("de.mehtrick.bjoern.gradle-plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.mehtrick.bjoern.gradle-plugin:de.mehtrick.bjoern.gradle-plugin.gradle.plugin:1.3.2") } } apply(plugin = "de.mehtrick.bjoern.gradle-plugin")
- Applying plugins to all subprojects .