Search Gradle plugins

app.futured.arkitekt.templates

Owner: Futured

This will add option to create new Arkitekt Fragment an Arkitekt Activity. Multiple files required by Arkitekt framework will be automatically generated (see: https://github.com/futuredapp/arkitekt)

https://github.com/futuredapp/arkitekt

Sources: https://github.com/futuredapp/arkitekt

Version 0.0.1-SNAPSHOT

Created 13 July 2021.

This will add option to create new Arkitekt Fragment an Arkitekt Activity. Multiple files required by Arkitekt framework will be automatically generated (see: https://github.com/futuredapp/arkitekt)

Add this plugin to your build using the plugins DSL:

plugins {
  id("app.futured.arkitekt.templates") version "0.0.1-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("app.futured.arkitekt.templates:app.futured.arkitekt.templates.gradle.plugin:0.0.1-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("app.futured.arkitekt.templates")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("app.futured.arkitekt.templates:app.futured.arkitekt.templates.gradle.plugin:0.0.1-SNAPSHOT")
      }
    }
    
    apply(plugin = "app.futured.arkitekt.templates")
  • Applying plugins to all subprojects .