Skip to content

Commit efefbcb

Browse files
author
Andrei Kamarouski
committed
changes
1 parent 5b8ab94 commit efefbcb

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,17 @@ plugins {
55
group = 'com.zebrunner'
66
version = "${version != 'unspecified' ? version : '1.7.0'}"
77

8+
sourceSets.all {
9+
configurations.getByName(runtimeClasspathConfigurationName) {
10+
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
11+
}
12+
configurations.getByName(compileClasspathConfigurationName) {
13+
attributes.attribute(Attribute.of("org.gradle.jvm.environment", String), "standard-jvm")
14+
}
15+
}
16+
817
repositories {
918
mavenCentral()
10-
google()
1119
}
1220

1321
dependencies {

0 commit comments

Comments
 (0)