Search Gradle plugins

Version 1.4.2

1.4.2

Created 20 October 2024.

A plugin to package JVM applications across systems

Using the plugins DSL:

plugins {
  id("io.github.fourlastor.construo") version "1.4.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.fourlastor:construo:1.4.2")
  }
}

apply(plugin = "io.github.fourlastor.construo")

Using the plugins DSL:

plugins {
  id "io.github.fourlastor.construo" version "1.4.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.fourlastor:construo:1.4.2"
  }
}

apply plugin: "io.github.fourlastor.construo"

Learn how to apply plugins to subprojects