Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.14 KB

File metadata and controls

37 lines (32 loc) · 1.14 KB
title Download Syncfusion Java packages from Gradle | Syncfusion
description This section demonstrates how to configure and download required Jars from Gradle (Jar configuration)
platform java-file-formats
control general
documentation UG

Configure to download Syncfusion Java packages from Gradle

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'
}