Skip to content

Tag: compilation

Java Compilation vs Perl Compilation

How different is the compilation procees of Java and Perl ? Both produce a byte code but what happens after that? Is the interpretation in perl and conversion from object code to machine code in java is all that is different? If so then why cant Java be a scripting language? Answer The first thing to note is …

Maven skip compile

I want to use Maven to execute a certain plug-in that only needs the source code but I do not want Maven to compile anything (mostly because the project just doesn’t compile). How do I tell Maven to skip the compile step and just launch its plug-in and then package the generated resources together in a …