com.vogella.asciidoc
                  Owner:
                  
                    
                    Simon Scholz
                  
                
Plugin to generate the tutorials on www.vogella.com
https://github.com/vogellacompany/com.vogella.gradle.plugins
Sources: https://github.com/vogellacompany/com.vogella.gradle.plugins
Version 0.16.1
Created 24 March 2019.
                Plugin to generate the tutorials on www.vogella.com
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.vogella.asciidoc") version "0.16.1"
}
              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("com.vogella.asciidoc:com.vogella.asciidoc.gradle.plugin:0.16.1") }It can then be applied in the precompiled script plugin:plugins { id("com.vogella.asciidoc") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.vogella.asciidoc:com.vogella.asciidoc.gradle.plugin:0.16.1") } } apply(plugin = "com.vogella.asciidoc") - Applying plugins to all subprojects .