Configure to download Syncfusion Java packages from Gradle

8 Jun 20221 minute to read

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

The following command shows how to mention the repository in Gradle.

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

The following command shows how to refer to the Syncfusion package in Gradle, which needs to be used in your project as the dependency.

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