fi.evident.apina
                  Owner:
                  
                    
                    Juha Komulainen
                  
                
Gradle plugin for creating TypeScript client code from Spring controllers and Jackson classes
https://github.com/EvidentSolutions/apina
Sources: https://github.com/EvidentSolutions/apina
Version 0.20.3
Created 18 January 2023.
                Gradle plugin for creating TypeScript client code from Spring controllers and Jackson classes
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("fi.evident.apina") version "0.20.3"
}
              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("fi.evident.apina:fi.evident.apina.gradle.plugin:0.20.3") }It can then be applied in the precompiled script plugin:plugins { id("fi.evident.apina") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fi.evident.apina:fi.evident.apina.gradle.plugin:0.20.3") } } apply(plugin = "fi.evident.apina") - Applying plugins to all subprojects .