Search Gradle plugins

com.github.decyg.innosetup

Owner: dn

This is nothing more than a simple gradle wrapper to distribute the bins for inno-setup to save youfrom having to include the bins in your own project

https://github.com/decyg

Sources: https://github.com/decyg

Version 1.0

Created 17 June 2016.

This is nothing more than a simple gradle wrapper to distribute the bins for inno-setup to save youfrom having to include the bins in your own project

Using the plugins DSL:

plugins {
  id("com.github.decyg.innosetup") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.decyg:innosetup:1.0")
  }
}

apply(plugin = "com.github.decyg.innosetup")

Using the plugins DSL:

plugins {
  id "com.github.decyg.innosetup" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.decyg:innosetup:1.0"
  }
}

apply plugin: "com.github.decyg.innosetup"

Learn how to apply plugins to subprojects