Search Gradle plugins

Version 1.4.3 (latest)

1.4.3

Created 23 October 2024.

A plugin to package JVM applications across systems

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects