ws.osiris.project
Owner: Chris Kent
Generates a project for building an application with Osiris
Sources: https://github.com/cjkent/osiris
Version 1.6.0 (latest)
Created 08 June 2020.
Generates a project for building an application with Osiris
Add this plugin to your build using the plugins DSL:
plugins {
id("ws.osiris.project") version "1.6.0"
}
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("ws.osiris.project:ws.osiris.project.gradle.plugin:1.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("ws.osiris.project") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ws.osiris.project:ws.osiris.project.gradle.plugin:1.6.0") } } apply(plugin = "ws.osiris.project")
- Applying plugins to all subprojects .