org.jpos.jposapp
Owner: Alejandro Revilla
Implements jPOS app conventions
Sources: https://github.com/jpos/jpos-gradle-plugin
Version 0.0.11 (latest)
0.0.11
Created 15 October 2024.
Implements jPOS app conventions
Using the plugins DSL:
plugins {
id("org.jpos.jposapp") version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jpos:jposapp:0.0.11")
}
}
apply(plugin = "org.jpos.jposapp")
Using the plugins DSL:
plugins {
id "org.jpos.jposapp" version "0.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jpos:jposapp:0.0.11"
}
}
apply plugin: "org.jpos.jposapp"