For the complete documentation index, see llms.txt. This page is also available as Markdown.

Editing Gradle dependencies

Pin a sealed version in build.gradle (direct dependencies only).

Direct dependencies

The Gradle manifest is build.gradle (or build.gradle.kts for the Kotlin DSL). Replace the version in the dependency declaration:

 dependencies {
-  implementation 'org.apache.commons:commons-text:1.10.0'
+  implementation 'org.apache.commons:commons-text:1.10.0+sp1'
 }

JVM ecosystems use + as the sealed-version separator. See Naming & versioning conventions for the full per-ecosystem suffix table.

Run a build (gradle build or ./gradlew build) and the resolved artifact is the sealed version.

Transitive dependencies

This page covers direct dependencies only. For overriding transitive dependencies in Gradle, work with your Seal account team to confirm the right pattern for your project's setup.

Last updated