org.mrlem.gnome.glade
                  Owner:
                  
                    
                    Sébastien Guillemin
                  
                
Glade plugin generating view-binding classes for all glade files, using the Kotlin Gnome API
https://github.com/mrlem/kotlin-native-gnome
Sources: https://github.com/mrlem/kotlin-native-gnome.git
Version 0.1.4
Created 28 April 2021.
                Glade plugin generating view-binding classes for all glade files, using the Kotlin Gnome API
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.mrlem.gnome.glade") version "0.1.4"
}
              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.mrlem.gnome.glade:org.mrlem.gnome.glade.gradle.plugin:0.1.4") }It can then be applied in the precompiled script plugin:plugins { id("org.mrlem.gnome.glade") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.mrlem.gnome.glade:org.mrlem.gnome.glade.gradle.plugin:0.1.4") } } apply(plugin = "org.mrlem.gnome.glade") - Applying plugins to all subprojects .