com.github.langmo.gradlensis
Owner: Moritz Lang
Creates NSIS installers for Windows.
https://github.com/langmo/gradle-nsis
Sources: https://github.com/langmo/gradle-nsis
Version 0.1.0 (latest)
0.1.0
Created 08 February 2020.
Creates NSIS installers for Windows.
Using the plugins DSL:
plugins {
id("com.github.langmo.gradlensis") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.langmo:gradle-nsis:0.1.0")
}
}
apply(plugin = "com.github.langmo.gradlensis")
Using the plugins DSL:
plugins {
id "com.github.langmo.gradlensis" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.langmo:gradle-nsis:0.1.0"
}
}
apply plugin: "com.github.langmo.gradlensis"