Search Gradle plugins

com.trevorism.create-project

Create standard folder structure, build file, and sample code with unit tests for a new project.

https://github.com/trevorism/create-project

Sources: https://github.com/trevorism/create-project

Version 0.1

0.1

Created 10 October 2015.

Create standard folder structure, build file, and sample code with unit tests for a new project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.trevorism.create-project") version "0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.trevorism:create-project:0.1")
      }
    }
    
    apply(plugin = "com.trevorism.create-project")
  • Applying plugins to all subprojects .