Configure to download Java packages from Gradle

13 Jul 20261 minute to read

You can easily download the Syncfusion® packages for Java using the maven repository.

The following snippet shows how to add the repository in the build.gradle file of your Gradle project.

repositories {
    maven {
       //Syncfusion® maven repository to download the artifacts.
       url "https://jars.syncfusion.com/repository/maven-public/"
    }
}

The following snippet shows how to add the Syncfusion® package in the build.gradle file, which needs to be used in your project as the dependency.

dependencies {
    implementation 'com.syncfusion:syncfusion-docio:18.4.0.30'
}

NOTE

The version 18.4.0.30 shown above is for illustration only. Replace it with the latest Syncfusion® Java package version available for your license.