com.xcporter.jpkg
Owner:
Alexander C Porter
Lightweight JVM packaging plugin for Gradle
https://github.com/xcporter/jpkg
Sources: https://github.com/xcporter/jpkg
Version 0.0.8 (latest)
Created 21 May 2021.
Lightweight JVM packaging plugin for Gradle
Using the plugins DSL:
plugins {
id("com.xcporter.jpkg") version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.xcporter:jpkg:0.0.8")
}
}
apply(plugin = "com.xcporter.jpkg")
Using the plugins DSL:
plugins {
id "com.xcporter.jpkg" version "0.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.xcporter:jpkg:0.0.8"
}
}
apply plugin: "com.xcporter.jpkg"