ayush
09/16/2024, 9:53 AMJakub Gwóźdź
09/17/2024, 7:40 AMamakeev
09/17/2024, 9:28 AMJakub Gwóźdź
09/17/2024, 9:40 AM./gradlew distTar
), not to mention publish libs, all I could do was ./amper build && ./amper run
• I couldn’t run plugins (like linters or code generators)
• it is kinda slow on first launch while it downloads dependencies, probably not something I’d like on the cicd (but I didn’t get that far to confirm)
• there’s no support for bill-of-materials dependencies yet, so I had to list all dependencies with the same versions specified
• the ./amper run
does not rebuild code if it changed, and ./amper build
does not re-read dependencies without ./amper clean
first, which was a bit misleading.
• Plus the major showstopper: bug with BOM dependencies that I reporter two weeks ago 🙂
That was standalone 0.4, on newest Kotlin and LTS java. For sure I’ll try again with next amper releases.amakeev
09/17/2024, 11:30 AMamper run
and amper build
, this doesn’t sound good.
As for the rest, they are indeed planned and some are even in the works, e.g. we are looking into how to support custom linters, code generator and other caseschristophsturm
09/17/2024, 3:58 PMamakeev
09/18/2024, 7:36 AMjoffrey
09/20/2024, 2:18 PMwe’ll recheck theI did re-check this, and indeed we have a problem in 0.4.0 regardingandamper run
, this doesn’t sound goodamper build
./amper build
, but I fixed it in the main
branch a while back. I can't reproduce in 0.5.0-dev-*, which is a good sign.
Regarding ./amper run
not rebuilding code, this is very strange. I cannot reproduce even in Amper 0.4.0. @Jakub Gwóźdź could it be that some file wasn't saved? Also, did you use an IDE to run it (which one?), or did you type the CLI command directly?Jakub Gwóźdź
09/25/2024, 3:38 PM./amper run
in the IntelliJ’s terminal. I did not press any command-s or anything to save files, not can I confirm it was failing to trigger build every time. but I notices it to fail a few times and then I just had ./amper build && ./amper run
in my shell’s history 🙂