Search Gradle plugins

Version 1.2.8

1.2.8

Created 28 September 2024.

inno-gradle lets you automatically use InnoSetup from gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.intisy.inno-gradle") version "1.2.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.intisy:inno-gradle:1.2.8")
      }
    }
    
    apply(plugin = "io.github.intisy.inno-gradle")
  • Applying plugins to all subprojects .