Нет аннотаций в отчете allure (gradle+junit)

Добрый день.
Аннотации в репорт не работают

@Description("вести значения суммы")- не работает 
@DisplayName("проверка общей суммы")  - имя теста работает 
@Attachment - работает 
@Flaky  - не работает 
@Issue("710") - подскажите как подключить -
@TmsLink("710") - подскадите как подключить

Ниже все содержимое всего билда

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

Давайте начнем с простого - научимся форматировать код, и хотя бы раз перечитывать то, что запостили. :wink:

Сергей, с удовольствием.
Прислушаюсь к Вашим советам.
Подскажи как правильно будет сделать ?

Внимательно изучить FAQ.