Search Gradle plugins

schoenja.sweng.eclipsito.EclipsitoPlugin

A plugin that shadows parts of the Eclipsito launcher used in ganttproject. This was created for a university assignment and will most likely not be useful to anyone else.

https://github.com/schoenja/sweng-eclipsito-plugin

Sources: https://github.com/schoenja/sweng-eclipsito-plugin

Version 0.3.0 (latest)

Created 18 December 2017.

A plugin that shadows parts of the Eclipsito launcher used in ganttproject.
This was created for a university assignment and will most likely not be useful to anyone else.

For full documentation see: https://github.com/schoenja/sweng-eclipsito-plugin

Using the plugins DSL:

plugins {
  id("schoenja.sweng.eclipsito.EclipsitoPlugin") version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.schoenja.sweng.eclipsito:eclipsito:0.3.0")
  }
}

apply(plugin = "schoenja.sweng.eclipsito.EclipsitoPlugin")

Using the plugins DSL:

plugins {
  id "schoenja.sweng.eclipsito.EclipsitoPlugin" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.schoenja.sweng.eclipsito:eclipsito:0.3.0"
  }
}

apply plugin: "schoenja.sweng.eclipsito.EclipsitoPlugin"

Learn how to apply plugins to subprojects