Myeclipse10 Build项目,总在验证js的问题

       使用Myeclipse的时候,保存文件的时候,或者是从SVN导入项目的时候,Myeclipse进行Build的时候,会验证java、jsp、js等文件,验证js会占用大量时间,在MyEclipse - Validation - JavaScript Validator 中取消掉 Manual和Build都依然无法阻止其验证js。 

      原来,在项目路径下面的.project文件中Myeclipse配置了一些验证信息.
<buildCommand>
     <name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
     <arguments></arguments>
< /buildCommand>
---------------------------------------------------------------------------
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>

将这些代码注释掉就可以了。

你可能感兴趣的:(Myeclipse10 Build项目,总在验证js的问题)