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

Cannot sync project with 251-EAP-SNAPSHOT and bundledPlugin dependencies #1902

Open
jreznot opened this issue Mar 14, 2025 · 3 comments
Open
Labels

Comments

@jreznot
Copy link
Member

jreznot commented Mar 14, 2025

What happened?

My Example does not sync plugin dependencies:

import org.jetbrains.intellij.platform.gradle.TestFrameworkType
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
  id("java")
  id("org.jetbrains.kotlin.jvm") version "2.1.0"
  id("org.jetbrains.intellij.platform") version "2.3.0"
}

group = "com.intellij.demo"
version = "252.0.0"

repositories {
  mavenCentral()
  intellijPlatform {
    snapshots()
  }
}

dependencies {
  intellijPlatform {
    intellijIdeaUltimate("251-EAP-SNAPSHOT", useInstaller = false)

    bundledPlugin("com.intellij.modules.json")
    bundledPlugin("org.intellij.intelliLang")
    bundledPlugin("com.intellij.java")

    testFramework(TestFrameworkType.Platform)
  }
}

intellijPlatform {
  pluginConfiguration {
    ideaVersion {
      sinceBuild = "251"
    }

    changeNotes = """
      Initial version
    """.trimIndent()
  }
}

tasks {
  // Set the JVM compatibility versions
  withType<JavaCompile> {
    sourceCompatibility = "21"
    targetCompatibility = "21"
  }
  withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
    compilerOptions {
      jvmTarget.set(JvmTarget.JVM_21)
    }
  }
}

Relevant log output or stack trace

wiremock:main: Could not find bundledPlugin:com.intellij.modules.json:IU-251.23774.109.
Searched in the following locations:
  - https://repo.maven.apache.org/maven2/bundledPlugin/com.intellij.modules.json/IU-251.23774.109/com.intellij.modules.json-IU-251.23774.109.pom
  - https://cache-redirector.jetbrains.com/www.jetbrains.com/intellij-repository/snapshots/bundledPlugin/com.intellij.modules.json/IU-251.23774.109/com.intellij.modules.json-IU-251.23774.109.pom
Required by:
    root project :

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

Steps to reproduce

Sync project

Gradle IntelliJ Plugin version

2.3.0

Gradle version

8.12

Operating System

None

Link to build, i.e. failing GitHub Action job

No response

@jreznot jreznot added the bug label Mar 14, 2025
@jreznot
Copy link
Member Author

jreznot commented Mar 14, 2025

Full example

intellij-wiremock-plugin-main.zip

@jreznot jreznot changed the title Cannot sync simples build script with 251-SNAPSHOT and bunldedPlugin Cannot sync simples build script with 251-EAP-SNAPSHOT and bunldedPlugin Mar 14, 2025
@jreznot jreznot changed the title Cannot sync simples build script with 251-EAP-SNAPSHOT and bunldedPlugin Cannot sync project with 251-EAP-SNAPSHOT and bunldedPlugin Mar 14, 2025
@jreznot jreznot changed the title Cannot sync project with 251-EAP-SNAPSHOT and bunldedPlugin Cannot sync project with 251-EAP-SNAPSHOT and bunledPlugin dependencies Mar 14, 2025
@jreznot jreznot removed the bug label Mar 14, 2025
@jreznot jreznot changed the title Cannot sync project with 251-EAP-SNAPSHOT and bunledPlugin dependencies Cannot sync project with 251-EAP-SNAPSHOT and bundledPlugin dependencies Mar 14, 2025
@jreznot jreznot added the bug label Mar 14, 2025
@jreznot
Copy link
Member Author

jreznot commented Mar 14, 2025

So I guess I fall into the trap with snapshots() which are never sufficient and docs do not give me any examples how to use them.

I also spent 30 minutes to figure our spell for version and useInstaller

intellijIdeaUltimate("251-EAP-SNAPSHOT", useInstaller = false)

@hsz
Copy link
Member

hsz commented Mar 27, 2025

Any ideas on how to improve it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants