To build Java applications, you can use the Ant, Maven and Gradle tools. IntelliJ IDEA allows you to work with these tools. But how does the default build happen when a project is created and started (if I don't use Ant, Maven and Gradle)?
- By default, if you create an empty Java project? - newakkoff
- here is ru.stackoverflow.com/questions/38296/intellidjidea-%D0%B8-jar ..... still here ru.stackoverflow.com/questions/427538/… ..... and here is ru.stackoverflow.com/ questions / 540 / ... - Alexey Shimansky
|
1 answer
Building the application includes compiling, linking and actually packing the code into an executable file (for example, into a jar file). Perhaps I’m wrong, but, as I understand it, IntelliJ IDEA uses the usual java-compiler, javac
to compile by default, and for the rest, you need to make the necessary settings before starting the application - for example, to use Ant you need to specify the path to build.xml
file, and to use Maven, the path to the Maven home directory, settings files, etc.
|