Search Gradle plugins

io.github.elisamin.jweust

Owner: Nonsan

A modern Gradle plugin aiming to replace exe4J by generating native Windows EXE for JAR files using the Rust language, with features like embedding the JAR, logging, and Git repository management.

https://github.com/ElisaMin/Jweust

Sources: https://github.com/ElisaMin/Jweust.git

Version 0.0.1 (latest)

Created 17 May 2023.

A modern Gradle plugin aiming to replace exe4J by generating native Windows EXE for JAR files using the Rust language, with features like embedding the JAR, logging, and Git repository management.

Using the plugins DSL:

plugins {
  id("io.github.elisamin.jweust") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.elisamin:jweust:0.0.1")
  }
}

apply(plugin = "io.github.elisamin.jweust")

Using the plugins DSL:

plugins {
  id "io.github.elisamin.jweust" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.elisamin:jweust:0.0.1"
  }
}

apply plugin: "io.github.elisamin.jweust"

Learn how to apply plugins to subprojects