Search Gradle plugins

xyz.srnyx.gradle-galaxy

Owner: srnyx

A Gradle plugin to simplify the process of creating projects

https://github.com/srnyx/gradle-galaxy

Sources: https://github.com/srnyx/gradle-galaxy

Version 1.3.2 (latest)

Created 03 October 2024.

A Gradle plugin to simplify the process of creating projects

Add this plugin to your build using the plugins DSL:

plugins {
  id("xyz.srnyx.gradle-galaxy") version "1.3.2"
}

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