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.0.1

1.0.1

Created 22 June 2023.

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.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.srnyx:gradle-galaxy:1.0.1")
      }
    }
    
    apply(plugin = "xyz.srnyx.gradle-galaxy")
  • Applying plugins to all subprojects .