Editing Gradle dependencies
Pin a sealed version in build.gradle (direct dependencies only).
Last updated
Pin a sealed version in build.gradle (direct dependencies only).
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.
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.
Configuring Gradle: the package-manager setup that points Gradle at the Seal Artifact Server.
Editing Maven dependencies: the Maven equivalent, including the <dependencyManagement> mechanism for transitive overrides.
Last updated