d10xa / gradle-allure-plugin

Gradle plugin generating Allure report from test results
Apache License 2.0
23 stars 2 forks source link

Publish plugin on https://plugins.gradle.org #10

Open rosolko opened 7 years ago

rosolko commented 7 years ago

It will allow to use plugin for gradle version >2.1 as follows:

plugins {
    id 'ru.d10xa.allure' version '0.5.5'
}

And remove block:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath "ru.d10xa:gradle-allure-plugin:0.5.5"
    }
}

with

apply plugin: 'ru.d10xa.allure'
d10xa commented 7 years ago

Probably I'll publish the next release there