Search Gradle plugins

Version 1.1.0 (latest)

Created 08 February 2024.

A plugin to package JVM applications across systems

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects