org.ysb33r.ysf-project.docs.antora
                  Owner:
                  
                    
                    Schalk Cronjé
                  
                
A plugin for publishing YSF Antora-based documentation to Gitlab pages.
https://ysf-project-plugins-ysb33rorg-org-807ecfcf56dadd76244b4af64464a.gitlab.io
Sources: https://gitlab.com/ysb33rOrg/ysf-project-plugins.git
Version 0.6.0 (latest)
Created 23 October 2025.
                A plugin for publishing YSF Antora-based documentation to Gitlab pages.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.ysb33r.ysf-project.docs.antora") version "0.6.0"
}
              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("org.ysb33r.ysf-project.docs.antora:org.ysb33r.ysf-project.docs.antora.gradle.plugin:0.6.0") }It can then be applied in the precompiled script plugin:plugins { id("org.ysb33r.ysf-project.docs.antora") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.ysb33r.ysf-project.docs.antora:org.ysb33r.ysf-project.docs.antora.gradle.plugin:0.6.0") } } apply(plugin = "org.ysb33r.ysf-project.docs.antora") - Applying plugins to all subprojects .