Peter Wilkinson
- Total activity 18
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created What maven phases run when starting a maven war project from intelliJ
I'm writing a maven plugin to manage my JavaScript projects. It's going well and I've got something that grabs all the javascript dependencies and extracts them to {war-directory}/js in the compile... -
Created What is wrong with IntelliJ and large XML files?
Ok, so my xml files is 16000 lines long. I don't expect IntelliJ to hang if I open an big XML file though and that's exactly what it does.I'm on a 4 core machine. Opening the file pegs 1 of the cor... -
Created Is it possible to define a custom inheritance method?
At my work we use a method likeutils.implement(ExtendingClass, BaseClass);Is there a way to tell intellij to treat this the same way asfunction BaseClass() {}function ExtendingClass() {}ExtendingCl... -
Created Compile just what's needed and ignore compile errors elsewhere
AnsweredI frequently write unit tests as I'm developing to test bits of code I'm writing.I'm finding it very tedious that in order to run the unit test I need to recompile EVERYTHING. Is there a way to ma... -
Created Can I run a single file without rebuilding the whole project?
I often write little classes where I test my logic before sticking it into a permanent class.Testing regexes is a common reason. (I sure love regexes...)I can't figure out how to make intellij run...