Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.4.25 depends on missing blockmap 1.0.5 #537

Closed
jonathanlermitage opened this issue Sep 18, 2020 · 13 comments
Closed

0.4.25 depends on missing blockmap 1.0.5 #537

jonathanlermitage opened this issue Sep 18, 2020 · 13 comments
Assignees

Comments

@jonathanlermitage
Copy link

jonathanlermitage commented Sep 18, 2020

0.4.25 release depends on blockmap 1.0.5, which is not published yet on regular repositories.

> Could not resolve all artifacts for configuration ':classpath'.
   > Could not find org.jetbrains.intellij:blockmap:1.0.5.
     Searched in the following locations:
       - https://repo.maven.apache.org/maven2/org/jetbrains/intellij/blockmap/1.0.5/blockmap-1.0.5.pom
       - file:/C:/Users/jonat/.m2/repository/org/jetbrains/intellij/blockmap/1.0.5/blockmap-1.0.5.pom
       - https://jcenter.bintray.com/org/jetbrains/intellij/blockmap/1.0.5/blockmap-1.0.5.pom
       - https://plugins.gradle.org/m2/org/jetbrains/intellij/blockmap/1.0.5/blockmap-1.0.5.pom
     Required by:
         project : > org.jetbrains.intellij:org.jetbrains.intellij.gradle.plugin:0.4.25 > gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.4.25 > org.jetbrains.intellij:plugin-repository-rest-client:2.0.15
@zolotov
Copy link
Member

zolotov commented Sep 18, 2020

as a workaround, please add this to your buildscript

buildscript {
  repositories {
    maven { 
      url 'https://jetbrains.bintray.com/intellij-plugin-service' 
    }
  }
}

@zolotov zolotov self-assigned this Sep 18, 2020
@ziscloud
Copy link

ziscloud commented Sep 19, 2020

0.4.26 also has this issue

add below configuration to the beginning of settings.gradle

pluginManagement {
    repositories {
        maven{
            url 'https://jetbrains.bintray.com/intellij-plugin-service'
        }
        maven {
            url "https://plugins.gradle.org/m2/"
        }
        mavenCentral()
    }
}

@zolotov
Copy link
Member

zolotov commented Sep 20, 2020

yes, we know the reason, working on the fix

ungaralex pushed a commit to ls1intum/Orion that referenced this issue Sep 20, 2020
@YannCebron YannCebron pinned this issue Sep 21, 2020
mplushnikov added a commit to mplushnikov/lombok-intellij-plugin that referenced this issue Sep 23, 2020
@adgai
Copy link

adgai commented Sep 27, 2020

is there any solution to temp fix this?

@adgai
Copy link

adgai commented Sep 27, 2020

as a workaround, please add this to your buildscript

buildscript {
  repositories {
    maven { 
      url 'https://jetbrains.bintray.com/intellij-plugin-service' 
    }
  }
}

I use this,but dont work.

@hannesa2
Copy link

This works on my side

// workaround for https://github.com/JetBrains/gradle-intellij-plugin/issues/537
pluginManagement {
    repositories {
        maven{
            url 'https://jetbrains.bintray.com/intellij-plugin-service'
        }
        maven {
            url "https://plugins.gradle.org/m2/"
        }
        mavenCentral()
    }
}

@zolotov
Copy link
Member

zolotov commented Oct 1, 2020

fixed

@zolotov zolotov closed this as completed Oct 1, 2020
@hannesa2
Copy link

hannesa2 commented Oct 1, 2020

fixed

Please can you link to the commit, currently the last commit is 3 h in advance of your message

@zolotov
Copy link
Member

zolotov commented Oct 1, 2020

there is no commit

@hannesa2
Copy link

hannesa2 commented Oct 1, 2020

but why it's fixed then ?

@zolotov
Copy link
Member

zolotov commented Oct 1, 2020

well, because it's fixed. if you still have any problems with that, please file the new issue with logs and steps to reproduce the problem.

@hannesa2
Copy link

hannesa2 commented Oct 1, 2020

well, because it's fixed.

Sorry, it's a rumor #537 (comment)

@zolotov
Copy link
Member

zolotov commented Oct 1, 2020

We have fixed it an hour ago, your comment has nothing to do with that

@YannCebron YannCebron unpinned this issue Oct 5, 2020
SergeyZh pushed a commit to JetBrains/intellij-community that referenced this issue Oct 9, 2020
…#537

GitOrigin-RevId: 696613cfcc4447f8e459f57f8ab3efef8248c9b2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants