Не подтягиваются аннотации к отчету Allure (@Description,@Flaky)

Проблема (Вопрос) заключается …
Не подтягиваются аннотации к отчету
Я попытался сделать …
Добавил все необходимы расширения
У меня получилось …

У меня не получилось …
все так же и осталось никакого положительного результата
Код

version '1.0-SNAPSHOT'
buildscript {
 repositories {
  maven {
   url "https://plugins.gradle.org/m2/"
  }
 }
 dependencies {
  classpath "io.qameta.allure:allure-gradle:2.4"
 }
}
apply plugin: 'java'
apply plugin: 'io.qameta.allure'

targetCompatibility = 1.8
sourceCompatibility = 1.8

repositories {
 mavenCentral()
}

dependencies {
 testCompile group: 'junit', name: 'junit', version: '4.12'
 compile 'org.seleniumhq.selenium:selenium-java:3.6.0'
 compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
 compile 'com.codepine.api:testrail-api-java-client:2.0.0'
 compile 'cz.etnetera:testrail-java-adapter-junit:0.0.1'
 compile group: 'org.aspectj', name: 'aspectjrt', version: '1.8.12'
 testCompile group: 'ru.yandex.qatools.allure', name: 'allure-junit-adaptor', version: '1.5.4'
 compile group: 'ru.yandex.qatools.allure', name: 'allure-java-annotations', version: '1.5.4'
 compile group: 'ru.yandex.qatools.allure', name: 'allure-report-data', version: '1.5.4'
 compile group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
 compile group: 'ru.yandex.qatools.allure', name: 'allure-report-builder', version: '2.3'
 compile group: 'ru.yandex.qatools.allure', name: 'allure-junit-plugin', version: '1.2.4'

}
test {
 maxParallelForks = 1
 useJUnit()

}
tasks.withType(JavaCompile) {
 options.encoding = 'UTF=8'
}
compileTestJava.options.encoding = 'UTF-8'
compileJava.options.encoding = 'UTF-8'

allure {
 autoconfigure = true
 aspectjweaver = true
 version = '2.4.0'
}

Логи и ошибка вот такая …
Никаких ошибок не выдает
Версии ОС и софта следующие …
Использую Gradle + Junit + Java