Configuring Gradle
How to configure the Gradle package manager
This page explains how to configure the Gradle package manager to pull packages from the Seal artifact server based on your existing setup.
Make sure you have the access token for the server ready.
Pull directly from the global Maven repository using Groovy
Open the project's
build.gradle
file under theapp
directory.In the
repositories
section add Seal Security's artifact server. Note that it should replace or be before the built-in servers such asmavenCentral()
andgoogle()
as explained here. See the following example:
Open the project's
gradle.properties
file and set the following properties, whereSEAL_TOKEN
stands for your token andPROJECT_ID
should be the name of your project:
Pull from JFrog's Artifactory
Go to JFrog's Artifactory configuration and create a new remote Maven repository.
In the Basic configuration, choose whatever Repository Key you like.
In both the URL field set
https://maven.sealsecurity.io
.In the User Name field use
jfrog
.In the Password / Access Token field paste the Production token you created earlier.
Turn off the Handle Snapshots option.
Save the new repository, and set it as the top priority remote repository in the virtual repository you're using.
Last updated