Was anyone able to try compose-jb <v1.2.0-alpha01-...
# compose-desktop
n
Was anyone able to try compose-jb v1.2.0-alpha01-dev686? I tried to upgrade to it from 1.1.1 but I always get various build errors like
Copy code
Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find org.jetbrains.compose.compiler:compiler:1.2.0-alpha01-dev686.
or some other error 😞 My goal is to use Kotlin 1.6.21... Thanks.
j
Using in https://github.com/joreilly/PeopleInSpace fwiw. Have you following?
Copy code
maven("<https://maven.pkg.jetbrains.space/public/p/compose/dev>")
👍🏻 1
👀 1
🙏 1
n
The problem seems to be that I have to use a different compose compiler version. How can I specify it? I use only Compose/Desktop, no Android:
Copy code
compose {
    desktop {
        application {
            ...
But I don't see any property to set the compose compiler version...
m
I just do
Copy code
plugins {
    kotlin("jvm")
    id("org.jetbrains.compose") version "1.2.0-alpha01-dev686"
}
and it works fine
l
683 and most of the 670s also support 1.6.21, since I’ve been using those with 1.6.21 for a bit.
n
Something is not right on my side, I get:
Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find org.jetbrains.compose.compilercompiler1.2.0-alpha01-dev686.
m
Maybe
Copy code
buildscript {
    repositories {
        mavenCentral()
        maven("<https://maven.pkg.jetbrains.space/public/p/compose/dev>")
    }
}
?
n
Thanks for the tip but I got this repo configured (from the times when the 1.0.0 was alpha/beta 😉 🙂 ).
a
Getting the same with "1.2.0-alpha01-dev686"
Never mind, I forgot to put it in top level build.gradle