Hum, I see. Unfortunately my build is breaking in ...
# javascript
g
Hum, I see. Unfortunately my build is breaking in
4.10.3
too. It looks like something like this is breaking it:
Copy code
// Workaround to avoid downloading dependencies every time.
	repositories {
		mavenLocal().apply {
			content {
				excludeGroup("Kotlin/Native")
			}
		}
		maven {
			url = uri("<https://dl.bintray.com/soywiz/soywiz>")
			content {
				includeGroup("com.soywiz")
				excludeGroup("Kotlin/Native")
			}
		}
		jcenter() {
			content {
				excludeGroup("Kotlin/Native")
			}
		}
		google().apply {
			content {
				excludeGroup("Kotlin/Native")
			}
		}