├── .gitignore ├── .travis.yml ├── README.md ├── gradle.properties.enc ├── gradle ├── buildViaTravis.sh └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── groovy │ └── ru │ │ └── alfalab │ │ └── gradle │ │ ├── CucumberReportingExtension.groovy │ │ ├── CucumberReportingPlugin.groovy │ │ └── CucumberReportingTask.groovy └── resources │ └── META-INF │ └── gradle-plugins │ └── ru.alfalab.cucumber-reporting.properties └── test └── groovy └── ru └── alfalab └── gradle ├── CucumberReportingPluginIntegrationSpec.groovy ├── CucumberReportingPluginSpec.groovy └── EmptyProjectIntegrationSpec.groovy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/gradle.properties.enc -------------------------------------------------------------------------------- /gradle/buildViaTravis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/gradle/buildViaTravis.sh -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/groovy/ru/alfalab/gradle/CucumberReportingExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/src/main/groovy/ru/alfalab/gradle/CucumberReportingExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/ru/alfalab/gradle/CucumberReportingPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/src/main/groovy/ru/alfalab/gradle/CucumberReportingPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/ru/alfalab/gradle/CucumberReportingTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/src/main/groovy/ru/alfalab/gradle/CucumberReportingTask.groovy -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/ru.alfalab.cucumber-reporting.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/src/main/resources/META-INF/gradle-plugins/ru.alfalab.cucumber-reporting.properties -------------------------------------------------------------------------------- /src/test/groovy/ru/alfalab/gradle/CucumberReportingPluginIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/src/test/groovy/ru/alfalab/gradle/CucumberReportingPluginIntegrationSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/ru/alfalab/gradle/CucumberReportingPluginSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/src/test/groovy/ru/alfalab/gradle/CucumberReportingPluginSpec.groovy -------------------------------------------------------------------------------- /src/test/groovy/ru/alfalab/gradle/EmptyProjectIntegrationSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfa-laboratory/cucumber-reporting-gradle-plugin/HEAD/src/test/groovy/ru/alfalab/gradle/EmptyProjectIntegrationSpec.groovy --------------------------------------------------------------------------------