Peter Wilkinson
- 活动总数 18
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 7
-
创建于 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... -
创建于 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... -
创建于 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... -
创建于 Compile just what's needed and ignore compile errors elsewhere
已回答I 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... -
创建于 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...