Search Gradle plugins

sh.pancake.storymap

Gradle plugin which provides mapped vanilla minecraft server source with official mapping!

https://github.com/story-network

Sources: https://github.com/story-network/storymap

Version 1.0.0 (latest)

Created 02 October 2020.

Gradle plugin which provides mapped vanilla minecraft server source with official mapping!

Using the plugins DSL:

plugins {
  id("sh.pancake.storymap") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.sh.pancake:storymap:1.0.0")
  }
}

apply(plugin = "sh.pancake.storymap")

Using the plugins DSL:

plugins {
  id "sh.pancake.storymap" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.sh.pancake:storymap:1.0.0"
  }
}

apply plugin: "sh.pancake.storymap"

Learn how to apply plugins to subprojects