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
Sources: https://github.com/decyg
Version 1.2 (latest)
1.2
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.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.decyg:innosetup:1.2")
}
}
apply(plugin = "com.github.decyg.innosetup")
Using the plugins DSL:
plugins {
id "com.github.decyg.innosetup" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.decyg:innosetup:1.2"
}
}
apply plugin: "com.github.decyg.innosetup"