dukatGradleDemo icon indicating copy to clipboard operation
dukatGradleDemo copied to clipboard

Plugin [id: 'org.jetbrains.kotlin.js', version: '1.3.50'] was not found

Open SimonScholz opened this issue 5 years ago • 3 comments

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)

SimonScholz avatar Oct 10 '19 09:10 SimonScholz

The same for me :(

samiuelson avatar Oct 24 '19 19:10 samiuelson

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/

yuanqingfei avatar Nov 09 '19 16:11 yuanqingfei

Any solution ?

rahul6941 avatar Oct 28 '21 21:10 rahul6941