dukatGradleDemo
dukatGradleDemo copied to clipboard
Plugin [id: 'org.jetbrains.kotlin.js', version: '1.3.50'] was not found
Hi,
when I try to run a build from command line or open the project in IntelliJ I get the following error.
* Where:
Build file 'C:\Users\SCHOLZSI\git\kotlin-multi-js-jvm\dukatGradleDemo\build.gradle.kts' line: 1
* What went wrong:
Plugin [id: 'org.jetbrains.kotlin.js', version: '1.3.50'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'org.jetbrains.kotlin.js:org.jetbrains.kotlin.js.gradle.plugin:1.3.50')
Searched in the following repositories:
MavenRepo
maven(https://dl.bintray.com/kotlin/kotlin-eap)
The same for me :(
You can use
repositories {
maven(url = "https://dl.bintray.com/kotlin/kotlin-dev")
}
as maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
has no 1.3.50 :
https://dl.bintray.com/kotlin/kotlin-eap/org/jetbrains/kotlin/js/org.jetbrains.kotlin.js.gradle.plugin/
https://dl.bintray.com/kotlin/kotlin-dev/org/jetbrains/kotlin/js/org.jetbrains.kotlin.js.gradle.plugin/
Any solution ?