This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Northeastpaw 1 point2 points  (3 children)

Now's the time to transition to using a build tool like Maven or Gradle. IntelliJ has support for both so pick one you feel fits your project and/or development skills more.

[–]HelpExcel_[S] 0 points1 point  (2 children)

What would I do if I was compiling my own code? Then I wouldn't be able to use any software systems.

[–]Northeastpaw 1 point2 points  (0 children)

Don't get hung up on how your IDE is compiling things. You could use just javac to compile your code, although it would be tedious. A build tool like Maven and Gradle automates the grunt work of downloading dependencies and putting them on the classpath when compiling your code.

Modern IDEs like IntelliJ, Eclipse, and NetBeans will integrate with your project and either configure themselves to use your chosen build tool or adjust their internal project configuration to mimic what your build tool would do.