Owner:
ZeroC, Inc.
Generates Java code from Slice definitions and integrates with Java and Android Gradle builds.
Sources: https://github.com/zeroc-ice/ice.git
Version 3.8.0 (latest)
Created 18 December 2025.
Generates Java code from Slice definitions and integrates with Java and Android Gradle builds.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.zeroc.slice-tools") version "3.8.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("com.zeroc.slice-tools:com.zeroc.slice-tools.gradle.plugin:3.8.0") }It can then be applied in the precompiled script plugin:plugins { id("com.zeroc.slice-tools") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.zeroc.slice-tools:com.zeroc.slice-tools.gradle.plugin:3.8.0") } } apply(plugin = "com.zeroc.slice-tools") - Applying plugins to all subprojects .