com.unsilo.jcasgen
                  Owner:
                  
                    
                    Augusto Ribeiro
                  
                
Gradle plugin for generating UIMA type system beans from XML descriptors
https://github.com/unsiloai/gradle-jcasgen-plugin
Sources: https://github.com/unsiloai/gradle-jcasgen-plugin.git
Version 0.9 (latest)
Created 18 June 2020.
                Gradle plugin for generating UIMA type system beans from XML descriptors
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.unsilo.jcasgen") version "0.9"
}
              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.unsilo.jcasgen:com.unsilo.jcasgen.gradle.plugin:0.9") }It can then be applied in the precompiled script plugin:plugins { id("com.unsilo.jcasgen") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.unsilo.jcasgen:com.unsilo.jcasgen.gradle.plugin:0.9") } } apply(plugin = "com.unsilo.jcasgen") - Applying plugins to all subprojects .