Skip to content

Commit b2b96c9

Browse files
authored
fix spi-off package (fixes allure-framework#46, via allure-framework#62)
1 parent 1ecb638 commit b2b96c9

3 files changed

Lines changed: 2 additions & 14 deletions

File tree

allure-cucumber-jvm/build.gradle

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ dependencies {
1818
compile 'info.cukes:cucumber-junit:1.2.5'
1919

2020
testCompile 'junit:junit:4.12'
21-
22-
2321
}
2422

2523
test.doFirst {
@@ -30,13 +28,3 @@ test {
3028
systemProperty 'allure.model.indentOutput', true
3129
systemProperty 'allure.results.directory', 'build/allure-results'
3230
}
33-
34-
35-
task spiOffJar(type: Jar, dependsOn: classes) {
36-
classifier = 'spi-off'
37-
from sourceSets.main.allJava
38-
}
39-
40-
artifacts {
41-
archives spiOffJar
42-
}

allure-junit5/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ tasks.withType(JavaExec) {
5252

5353
task spiOffJar(type: Jar, dependsOn: classes) {
5454
classifier = 'spi-off'
55-
from sourceSets.main.allJava
55+
from sourceSets.main.output
5656
}
5757

5858
artifacts {

allure-testng/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ test {
4747

4848
task spiOffJar(type: Jar, dependsOn: classes) {
4949
classifier = 'spi-off'
50-
from sourceSets.main.allJava
50+
from sourceSets.main.output
5151
}
5252

5353
artifacts {

0 commit comments

Comments
 (0)