Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [quote author=DontCare4Free link=topic=213238.msg6025211#msg6025211 date=1352331515]
- First two will causes compiler errors, which means that it's pretty easy to fix.
- Regarding the last one, are you seriously using javac manually to compile Java code? For your own sanity, [b]don't[/b] Be lazy and use a tool that handles all of that for you instead (for example, [url=http://maven.apache.org/]Maven[/url], [url=http://gradle.org/]Gradle[/url], or [url=http://www.scala-sbt.org/]SBT[/url]).
- Maven is probably the fastest of the bunch, but it's a pain to set up, IIRC. Gradle has an awesome DSL IMO (and your basic build manifest is just "apply plugin: 'java'" if the defaults are fine for you), but it is (at least it was back when I used it, although that was a while ago) relatively slow. SBT is somewhere in between, arguably it has a less awesome DSL than Gradle, but OTOH it has some other benefits (such as better Scala support, a type-safe DSL, automatic recompiling when you save your code (awesome), and better performance), although it will, IIRC, include the Scala standard library as a dependency by default.
- [/quote]
Advertisement
Add Comment
Please, Sign In to add comment