Search Gradle plugins

cc.mages.mageswar

Owner: Gu Yang

War Project Template Plugin Sample.

http://www.sysu.edu.cn/

Sources: http://www.sysu.edu.cn/

Version 1.0-SNAPSHOT (latest)

Created 02 June 2019.

War Project Template Plugin Sample.

Add this plugin to your build using the plugins DSL:

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