net.innospire.typescript-generator
Owner: Stefan Paul Noack
Generates Typescript files for ngx-resource from Spring MVC Rest Controllers.
https://bitbucket.org/uniwunder/typescript-generator
Sources: https://bitbucket.org/StefanPaulNoack/typescript-generator
Version 1.0-SNAPSHOT
Created 15 January 2019.
Generates Typescript files for ngx-resource from Spring MVC Rest Controllers.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.innospire.typescript-generator") version "1.0-SNAPSHOT"
}
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("net.innospire.typescript-generator:net.innospire.typescript-generator.gradle.plugin:1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("net.innospire.typescript-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.innospire.typescript-generator:net.innospire.typescript-generator.gradle.plugin:1.0-SNAPSHOT") } } apply(plugin = "net.innospire.typescript-generator")
- Applying plugins to all subprojects .