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