xyz.apollosoftware.gradle.javacard
CC-compatible
Owner:
SamJakob
A modern, fast, and highly flexible Gradle plugin for working with the Java Card SDK.
https://github.com/apollosoftwarexyz/gradle-javacard
Sources: https://github.com/apollosoftwarexyz/gradle-javacard
Version 1.0 (latest)
Created 05 March 2026.
A modern, fast, and highly flexible Gradle plugin for working with the Java Card SDK.
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.apollosoftware.gradle.javacard") version "1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("xyz.apollosoftware.gradle.javacard:xyz.apollosoftware.gradle.javacard.gradle.plugin:1.0") }It can then be applied in the precompiled script plugin:plugins { id("xyz.apollosoftware.gradle.javacard") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.apollosoftware.gradle.javacard:xyz.apollosoftware.gradle.javacard.gradle.plugin:1.0") } } apply(plugin = "xyz.apollosoftware.gradle.javacard") - Applying plugins to all subprojects .