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.7.4
Created 22 March 2017.
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.7.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("fi.evident.apina:fi.evident.apina.gradle.plugin:0.7.4") }
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.7.4") } } apply(plugin = "fi.evident.apina")
- Applying plugins to all subprojects .