christophsturm
06/01/2024, 10:54 AMzsmb
06/01/2024, 12:15 PMright now in the project where try amperI have old library dependencies, and the build is slower than a gradle build. and fixing this will make my build as complicated as a normal gradle build.
I'm curious to hear more about the project you're trying Amper in, is it public by any chance? Seems strange that it would be slower to build with Amper. Also, could you expand on what old dependencies you have, and why fixing those would make the build more complicated?
christophsturm
06/01/2024, 1:05 PMchristophsturm
06/01/2024, 1:07 PMThe following dependencies have later milestone versions:
- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable [2.0.0-RC3 -> 2.0.0]
<https://kotlinlang.org/>
- org.jetbrains.kotlin:kotlin-serialization-compiler-plugin-embeddable [2.0.0-RC3 -> 2.0.0]
<https://kotlinlang.org/>
- org.jetbrains.kotlin:kotlin-stdlib [2.0.0-RC3 -> 2.0.0]
<https://kotlinlang.org/>
- org.jetbrains.kotlin:kotlin-test [2.0.0-RC3 -> 2.0.0]
<https://kotlinlang.org/>
- org.jetbrains.kotlin:kotlin-test-junit [2.0.0-RC3 -> 2.0.0]
<https://kotlinlang.org/>
- org.jetbrains.kotlin:kotlin-test-junit5 [2.0.0-RC3 -> 2.0.0]
<https://kotlinlang.org/>
- org.jetbrains.kotlinx:kotlinx-serialization-json [1.5.1 -> 1.6.3]
<https://github.com/Kotlin/kotlinx.serialization>
christophsturm
06/01/2024, 1:08 PMchristophsturm
06/01/2024, 1:10 PMchristophsturm
06/01/2024, 1:12 PMpluginManagement {
repositories {
mavenCentral()
google {
@Suppress("UnstableApiUsage")
content {
includeGroupAndSubgroups("com.android")
includeGroupAndSubgroups("com.google.testing.platform")
includeGroupAndSubgroups("androidx.databinding")
}
}
gradlePluginPortal()
maven("<https://maven.pkg.jetbrains.space/public/p/amper/amper>")
maven("<https://www.jetbrains.com/intellij-repository/releases>") {
content {
includeGroup("com.jetbrains.intellij.platform")
}
}
maven("<https://packages.jetbrains.team/maven/p/ij/intellij-dependencies>")
}
}
not sure if thats still so relevant with 0.3 toochristophsturm
06/01/2024, 1:22 PMzsmb
06/01/2024, 1:24 PM