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)

Using the plugins DSL:

plugins {
  id("app.futured.arkitekt.templates") version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("app.futured.arkitekt:templates:0.0.1-SNAPSHOT")
  }
}

apply(plugin = "app.futured.arkitekt.templates")

Using the plugins DSL:

plugins {
  id "app.futured.arkitekt.templates" version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "app.futured.arkitekt:templates:0.0.1-SNAPSHOT"
  }
}

apply plugin: "app.futured.arkitekt.templates"

Learn how to apply plugins to subprojects