io.github.fourlastor.construo
Owner: Daniele Conti
A plugin to package JVM applications across systems
https://www.github.com/fourlastor-alexandria/construo
Sources: https://www.github.com/fourlastor-alexandria/construo
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"