...

/

Allure Dependency and Annotations

Allure Dependency and Annotations

In this lesson, you'll learn about Allure's dependencies and annotations.

Adding dependency

To use Gradle, we have to add the dependencies below to our project’s build file:

Gradle (in build.gradle)

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
       
...