Kingdaro

my clipboard 11/7/2012 7:32 PM EST

Nov 7th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. [quote author=DontCare4Free link=topic=213238.msg6025211#msg6025211 date=1352331515]
  2. First two will causes compiler errors, which means that it's pretty easy to fix.
  3. 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]).
  4. 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.
  5. [/quote]
Advertisement
Add Comment
Please, Sign In to add comment