this post was submitted on 07 Aug 2023
40 points (91.7% liked)

Programming

17030 readers
254 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 19 points 1 year ago (1 children)

Gradle is absolute rubbish, definitely the worst experience I've had with a build system. But Maven is also rubbish.

IMO a CLI should be the primary way of interacting with the build system (see e.g. Go, Rust, JS with NPM or Yarn, Python with Poetry) and manually editing the build file should be reserved for edge cases and extensions.

[–] [email protected] 2 points 1 year ago (2 children)

As someone who wants to use Kotlin or Scala, is there another way to get around these two? Coming from .NET or NPM I found both of these to be terrible.

[–] sylveon 3 points 1 year ago

The "default" build tool for Scala is sbt.

[–] UFODivebomb 2 points 1 year ago

There is Mill https://github.com/com-lihaoyi/mill

Which offers a nicer experience than the default Scala build tool: https://www.scala-sbt.org/

I personally like sbt a lot, but I've been told mill is more approachable.